mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
414 B
C#
16 lines
414 B
C#
using mRemoteNG.Tools;
|
|
|
|
namespace mRemoteNG.Connection.Protocol.RDP
|
|
{
|
|
public enum RDPSoundQuality
|
|
{
|
|
[LocalizedAttributes.LocalizedDescription("strRDPSoundQualityDynamic")]
|
|
Dynamic = 0,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strRDPSoundQualityMedium")]
|
|
Medium = 1,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strRDPSoundQualityHigh")]
|
|
High = 2
|
|
}
|
|
} |