mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
89ca08f6cf
- Potentially fixed memory leak in code progress bar - Added using statement in SteamGuardCodeGenerator on disposable HMACSHA1 - Most of packages updated to the last version
22 lines
487 B
C#
22 lines
487 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace NebulaAuth.ViewModel.Other;
|
|
|
|
public partial class LoginAgainVM : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
[NotifyPropertyChangedFor(nameof(IsFormValid))]
|
|
private string _password = null!;
|
|
|
|
[ObservableProperty]
|
|
private bool _savePassword;
|
|
|
|
[ObservableProperty]
|
|
private string _userName = null!;
|
|
|
|
|
|
public bool IsFormValid => !string.IsNullOrWhiteSpace(Password);
|
|
|
|
public LoginAgainVM()
|
|
{ }
|
|
} |