mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
15 lines
293 B
C#
15 lines
293 B
C#
namespace Remotely.Shared.Enums;
|
|
|
|
public enum SessionSwitchReasonEx
|
|
{
|
|
ConsoleConnect = 1,
|
|
ConsoleDisconnect = 2,
|
|
RemoteConnect = 3,
|
|
RemoteDisconnect = 4,
|
|
SessionLogon = 5,
|
|
SessionLogoff = 6,
|
|
SessionLock = 7,
|
|
SessionUnlock = 8,
|
|
SessionRemoteControl = 9
|
|
}
|