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