mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
10 lines
206 B
C#
10 lines
206 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NadekoBot.Voice.Models
|
|
{
|
|
public sealed class VoiceHello
|
|
{
|
|
[JsonProperty("heartbeat_interval")]
|
|
public int HeartbeatInterval { get; set; }
|
|
}
|
|
} |