mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 19:06:35 +00:00
rework to Azaion.Suite, show tabs with annotator and dataset explorer
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user