Remotely/Shared/Models/ConnectionInfo.cs
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -07:00

30 lines
712 B
C#

using System;
using System.Collections.Generic;
using System.Text;
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();
if (host.EndsWith("/"))
{
host = host.Substring(0, host.LastIndexOf("/"));
}
}
}
public string OrganizationID { get; set; }
public string ServerVerificationToken { get; set; }
}
}