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