mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
16 lines
351 B
C#
16 lines
351 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NadekoBot.Voice.Models
|
|
{
|
|
public sealed class VoiceResume
|
|
{
|
|
[JsonProperty("server_id")]
|
|
public string ServerId { get; set; }
|
|
|
|
[JsonProperty("session_id")]
|
|
public string SessionId { get; set; }
|
|
|
|
[JsonProperty("token")]
|
|
public string Token { get; set; }
|
|
}
|
|
} |