using Newtonsoft.Json; namespace Ayu.Discord.Voice.Models { public sealed class VoiceSessionDescription { [JsonProperty("mode")] public string Mode { get; set; } [JsonProperty("secret_key")] public byte[] SecretKey { get; set; } } }