mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
279 B
C#
13 lines
279 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NadekoBot.Voice.Models
|
|
{
|
|
public sealed class VoiceSessionDescription
|
|
{
|
|
[JsonProperty("mode")]
|
|
public string Mode { get; set; }
|
|
|
|
[JsonProperty("secret_key")]
|
|
public byte[] SecretKey { get; set; }
|
|
}
|
|
} |