mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
Namespace changes to make them make sense
This commit is contained in:
20
src/NadekoBot.Voice/Models/VoiceIdentify.cs
Normal file
20
src/NadekoBot.Voice/Models/VoiceIdentify.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace NadekoBot.Voice.Models
|
||||
{
|
||||
public sealed class VoiceIdentify
|
||||
{
|
||||
[JsonProperty("server_id")]
|
||||
public string ServerId { get; set; }
|
||||
|
||||
[JsonProperty("user_id")]
|
||||
public string UserId { get; set; }
|
||||
|
||||
[JsonProperty("session_id")]
|
||||
public string SessionId { get; set; }
|
||||
|
||||
[JsonProperty("token")]
|
||||
public string Token { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user