19 lines
328 B
C#
19 lines
328 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 上麦状态
|
|||
|
/// </summary>
|
|||
|
public enum VoiceState
|
|||
|
{
|
|||
|
None, //下麦
|
|||
|
Waiting, //等待上麦
|
|||
|
Talking, //上麦
|
|||
|
|
|||
|
}
|
|||
|
}
|