fix loader version check

This commit is contained in:
Alex Bezdieniezhnykh
2025-07-03 19:36:48 +03:00
parent f6f0b0b266
commit 75d3a2412f
2 changed files with 30 additions and 32 deletions
-3
View File
@@ -10,7 +10,4 @@ public class ApiCredentials
[Key(nameof(Password))]
public string Password { get; set; } = null!;
public bool IsValid() =>
!string.IsNullOrWhiteSpace(Email) && !string.IsNullOrWhiteSpace(Password);
}