mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
12 lines
379 B
C#
12 lines
379 B
C#
using CommandLine;
|
|
|
|
namespace Azaion.Suite.Services.DTO;
|
|
|
|
public class SuiteCommandLineOptions
|
|
{
|
|
[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!;
|
|
} |