Namespace changes to make them make sense

This commit is contained in:
Kwoth
2024-04-27 22:45:14 +00:00
parent e963ffeaab
commit 4bab94b329
69 changed files with 59 additions and 78 deletions

View 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
}
}
}