Files
nadekobot/src/NadekoBot.Voice/Models/VoiceResume.cs
2024-04-27 22:45:14 +00:00

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; }
}
}