mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
23 lines
504 B
C#
23 lines
504 B
C#
namespace Remotely.Desktop.Win.ViewModels
|
|
{
|
|
public class HostNamePromptViewModel : ViewModelBase
|
|
{
|
|
private string host;
|
|
|
|
public static HostNamePromptViewModel Current { get; private set; }
|
|
public HostNamePromptViewModel()
|
|
{
|
|
Current = this;
|
|
}
|
|
public string Host
|
|
{
|
|
get => host;
|
|
set
|
|
{
|
|
host = value;
|
|
FirePropertyChanged("Host");
|
|
}
|
|
}
|
|
}
|
|
}
|