forked from EllieBotDevs/elliebot
13 lines
281 B
C#
13 lines
281 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|