Files
annotations/Azaion.CommonSecurity/DTO/ApiCredentials.cs
T
Alex Bezdieniezhnykh 500db31142 add azaion loader
2025-06-01 19:16:49 +03:00

16 lines
434 B
C#

using CommandLine;
using MessagePack;
namespace Azaion.CommonSecurity.DTO;
[MessagePackObject]
public class ApiCredentials : EventArgs
{
[Key(nameof(Email))]
[Option('e', "email", Required = true, HelpText = "User Email")]
public string Email { get; set; } = null!;
[Key(nameof(Password))]
[Option('p', "pass", Required = true, HelpText = "User Password")]
public string Password { get; set; } = null!;
}