This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/ayu/Ayu.Discord.Voice/Models/VoiceSessionDescription.cs
2023-07-11 16:35:28 +12:00

13 lines
No EOL
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; }
}
}