Remotely/Shared/Models/DesktopAppConfig.cs
2021-07-29 07:56:55 -07:00

24 lines
450 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; } = "";
}
}