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:
26
src/NadekoBot.Voice/Models/VoiceSpeaking.cs
Normal file
26
src/NadekoBot.Voice/Models/VoiceSpeaking.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
|
||||
namespace NadekoBot.Voice.Models
|
||||
{
|
||||
public sealed class VoiceSpeaking
|
||||
{
|
||||
[JsonProperty("speaking")]
|
||||
public int Speaking { get; set; }
|
||||
|
||||
[JsonProperty("delay")]
|
||||
public int Delay { get; set; }
|
||||
|
||||
[JsonProperty("ssrc")]
|
||||
public uint Ssrc { get; set; }
|
||||
|
||||
[Flags]
|
||||
public enum State
|
||||
{
|
||||
None = 0,
|
||||
Microphone = 1 << 0,
|
||||
Soundshare = 1 << 1,
|
||||
Priority = 1 << 2
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user