add azaion loader

This commit is contained in:
Alex Bezdieniezhnykh
2025-06-01 19:16:49 +03:00
parent 2584b4f125
commit 500db31142
54 changed files with 629 additions and 291 deletions
+7 -4
View File
@@ -1,13 +1,16 @@
using MessagePack;
using CommandLine;
using MessagePack;
namespace Azaion.CommonSecurity.DTO;
[MessagePackObject]
public class ApiCredentials(string email, string password) : EventArgs
public class ApiCredentials : EventArgs
{
[Key(nameof(Email))]
public string Email { get; set; } = email;
[Option('e', "email", Required = true, HelpText = "User Email")]
public string Email { get; set; } = null!;
[Key(nameof(Password))]
public string Password { get; set; } = password;
[Option('p', "pass", Required = true, HelpText = "User Password")]
public string Password { get; set; } = null!;
}