mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -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; }
|
|
}
|
|
} |