mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
26 lines
528 B
C#
26 lines
528 B
C#
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
|
|
}
|
|
}
|
|
} |