mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
347 B
C#
12 lines
347 B
C#
using Remotely.Desktop.Shared.Reactive;
|
|
using System.Windows.Input;
|
|
|
|
namespace Remotely.Desktop.UI.ViewModels.Fakes;
|
|
|
|
public class FakeHostNamePromptViewModel : FakeBrandedViewModelBase, IHostNamePromptViewModel
|
|
{
|
|
public string Host { get; set; } = "https://localhost:7024";
|
|
|
|
public ICommand OKCommand => new RelayCommand(() => { });
|
|
}
|