mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
24 lines
765 B
C#
24 lines
765 B
C#
using Remotely.Shared.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remotely.Server.Models
|
|
{
|
|
public class RCSessionInfo
|
|
{
|
|
public string AttendedSessionID { get; set; }
|
|
public string DeviceID { get; set; }
|
|
public string MachineName { get; set; }
|
|
public RemoteControlMode Mode { get; set; }
|
|
public string OrganizationID { get; set; }
|
|
public string RCDeviceSocketID { get; set; }
|
|
public string RequesterName { get; set; }
|
|
public string RequesterSocketID { get; set; }
|
|
public string RequesterUserName { get; set; }
|
|
public string ServiceID { get; set; }
|
|
public DateTime StartTime { get; set; }
|
|
}
|
|
}
|