Remotely/Shared/Models/DesktopAppConfig.cs

24 lines
455 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely.Shared.Models
{
public class DesktopAppConfig
{
private string _host = "";
public string Host
{
get => _host;
set
{
_host = value?.TrimEnd('/');
}
}
public string OrganizationId { get; set; } = "";
}
}