forked from EllieBotDevs/elliebot
16 lines
No EOL
353 B
C#
16 lines
No EOL
353 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Ayu.Discord.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; }
|
|
}
|
|
} |