Files
annotations/Azaion.Common/DTO/ApiCredentials.cs
T
Alex Bezdieniezhnykh 30b9b9aa80 fix keyboard catch, fix loading
refactoring
2024-11-25 13:03:46 +02:00

12 lines
362 B
C#

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!;
}