mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
25 lines
531 B
C#
25 lines
531 B
C#
using System;
|
|
|
|
namespace Remotely.Shared.Models
|
|
{
|
|
public class ConnectionInfo
|
|
{
|
|
private string _host;
|
|
public string DeviceID { get; set; } = Guid.NewGuid().ToString();
|
|
public string Host
|
|
{
|
|
get
|
|
{
|
|
return _host;
|
|
}
|
|
set
|
|
{
|
|
_host = value.Trim().TrimEnd('/');
|
|
}
|
|
}
|
|
public string OrganizationID { get; set; }
|
|
public string ServerVerificationToken { get; set; }
|
|
|
|
}
|
|
}
|