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); }