consolidate CommonSecurity to Common.dll

This commit is contained in:
Alex Bezdieniezhnykh
2025-06-13 23:06:48 +03:00
parent 904bc688ca
commit 8aa2f563a4
58 changed files with 362 additions and 151 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Azaion.LoaderUI;
public class ApiCredentials(string email, string pw)
{
public string Email { get; set; } = email;
public string Password { get; set; } = pw;
public bool IsValid() =>
!string.IsNullOrWhiteSpace(Email) && !string.IsNullOrWhiteSpace(Password);
}