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