Remotely/Server/Models/RemoteControlSessionEx.cs

12 lines
301 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;
}
}