mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-28 15:49:34 +00:00
11 lines
335 B
C#
11 lines
335 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace NebulaAuth.ViewModel.Other;
|
|
|
|
public partial class SdaPasswordDialogVM : ObservableObject
|
|
{
|
|
public bool IsFormValid => !string.IsNullOrWhiteSpace(Password);
|
|
|
|
[ObservableProperty] [NotifyPropertyChangedFor(nameof(IsFormValid))]
|
|
private string _password = string.Empty;
|
|
} |