Remotely/Desktop.UI/ViewModels/Fakes/FakeHostNamePromptViewModel.cs
2024-07-16 09:11:32 -07:00

12 lines
373 B
C#

using Immense.RemoteControl.Desktop.Shared.Reactive;
using System.Windows.Input;
namespace Immense.RemoteControl.Desktop.UI.ViewModels.Fakes;
public class FakeHostNamePromptViewModel : FakeBrandedViewModelBase, IHostNamePromptViewModel
{
public string Host { get; set; } = "https://localhost:7024";
public ICommand OKCommand => new RelayCommand(() => { });
}