Remotely/Shared/Enums/RemoteControlMode.cs

14 lines
202 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.Shared.Enums
{
public enum RemoteControlMode
{
None,
Unattended,
Normal
}
}