mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
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; }
|
|
}
|
|
} |