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