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