elliebot/src/ayu/Ayu.Discord.Voice/Models/VoiceIdentify.cs
2024-03-23 00:53:01 +13:00

20 lines
No EOL
434 B
C#

using Newtonsoft.Json;
namespace Ayu.Discord.Voice.Models
{
public sealed class VoiceIdentify
{
[JsonProperty("server_id")]
public string ServerId { get; set; }
[JsonProperty("user_id")]
public string UserId { get; set; }
[JsonProperty("session_id")]
public string SessionId { get; set; }
[JsonProperty("token")]
public string Token { get; set; }
}
}