mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
451 B
C#
16 lines
451 B
C#
using mRemoteNG.Tools;
|
|
|
|
namespace mRemoteNG.Connection.Protocol.RDP
|
|
{
|
|
public enum RDPSounds
|
|
{
|
|
[LocalizedAttributes.LocalizedDescription("strRDPSoundBringToThisComputer")]
|
|
BringToThisComputer = 0,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strRDPSoundLeaveAtRemoteComputer")]
|
|
LeaveAtRemoteComputer = 1,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strRDPSoundDoNotPlay")]
|
|
DoNotPlay = 2
|
|
}
|
|
} |