mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
Namespace changes to make them make sense
This commit is contained in:
13
src/NadekoBot.Voice/Models/VoiceSessionDescription.cs
Normal file
13
src/NadekoBot.Voice/Models/VoiceSessionDescription.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user