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