mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
19 lines
372 B
C#
19 lines
372 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; }
|
|
}
|
|
}
|