Remotely/Server/Models/RemoteControlSessionEx.cs
2023-07-21 10:16:29 -07:00

11 lines
279 B
C#

using Immense.RemoteControl.Server.Models;
using System;
namespace Remotely.Server.Models;
public class RemoteControlSessionEx : RemoteControlSession
{
public string DeviceId { get; set; } = string.Empty;
public string OrganizationId { get; set; } = string.Empty;
}