using System.Reactive; using AutoCat.ViewModels; using ReactiveUI; namespace AutoCat.Mocks; public class AuthWindowViewModelMock: ViewModelBase { public string Email { get; set; } = ""; public string Password { get; set; } = ""; public ReactiveCommand LoginCommand { get; } = ReactiveCommand.Create(() => { }); }