mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 15:06:29 +00:00
fix keyboard catch, fix loading
refactoring
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using CommandLine;
|
||||
|
||||
namespace Azaion.Common.DTO;
|
||||
|
||||
public class ApiCredentials
|
||||
{
|
||||
[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!;
|
||||
}
|
||||
Reference in New Issue
Block a user