mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
397 B
C#
20 lines
397 B
C#
using Remotely.Desktop.Core.ViewModels;
|
|
|
|
namespace Remotely.Desktop.Win.ViewModels
|
|
{
|
|
public class HostNamePromptViewModel : BrandedViewModelBase
|
|
{
|
|
private string _host = "https://";
|
|
|
|
public string Host
|
|
{
|
|
get => _host;
|
|
set
|
|
{
|
|
_host = value;
|
|
FirePropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
}
|