mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:46:30 +00:00
rework to have only 1 exe!
This commit is contained in:
@@ -1,12 +1,7 @@
|
||||
using CommandLine;
|
||||
namespace Azaion.Common.DTO;
|
||||
|
||||
namespace Azaion.Common.DTO;
|
||||
|
||||
public class ApiCredentials
|
||||
public class ApiCredentials(string email, string password) : EventArgs
|
||||
{
|
||||
[Option('e', "email", Required = true, HelpText = "The email for authorization.")]
|
||||
public string Email { get; set; } = null!;
|
||||
|
||||
[Option('p', "password", Required = true, HelpText = "The password for authorization.")]
|
||||
public string Password { get; set; } = null!;
|
||||
public string Email { get; set; } = email;
|
||||
public string Password { get; set; } = password;
|
||||
}
|
||||
Reference in New Issue
Block a user