Remotely/Shared/Models/WindowsSession.cs
2021-07-29 07:56:04 -07:00

20 lines
426 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.Shared.Models
{
public enum SessionType
{
Console,
RDP
}
public class WindowsSession
{
public uint ID { get; internal set; }
public string Name { get; internal set; }
public SessionType Type { get; internal set; }
public string Username { get; internal set; }
}
}