mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
16 lines
322 B
C#
16 lines
322 B
C#
namespace Remotely.Shared.Models
|
|
{
|
|
public enum SessionType
|
|
{
|
|
Console,
|
|
RDP
|
|
}
|
|
public class WindowsSession
|
|
{
|
|
public uint ID { get; set; }
|
|
public string Name { get; set; }
|
|
public SessionType Type { get; set; }
|
|
public string Username { get; set; }
|
|
}
|
|
}
|