15 lines
219 B
C#
15 lines
219 B
C#
using System.ComponentModel;
|
|
|
|
namespace Oculus.Platform
|
|
{
|
|
public enum VoipDtxState
|
|
{
|
|
[Description("UNKNOWN")]
|
|
Unknown = 0,
|
|
[Description("ENABLED")]
|
|
Enabled = 1,
|
|
[Description("DISABLED")]
|
|
Disabled = 2
|
|
}
|
|
}
|