mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:06:30 +00:00
10 lines
291 B
C#
10 lines
291 B
C#
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);
|
|
} |