mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:56:31 +00:00
rework autoupdate to script only
zoom fix
This commit is contained in:
@@ -4,7 +4,8 @@ using MessagePack;
|
||||
namespace Azaion.Common.DTO;
|
||||
|
||||
[MessagePackObject]
|
||||
public class ApiCredentials : EventArgs
|
||||
[Verb("credsManual", HelpText = "Manual Credentials")]
|
||||
public class ApiCredentials
|
||||
{
|
||||
[Key(nameof(Email))]
|
||||
[Option('e', "email", Required = true, HelpText = "User Email")]
|
||||
@@ -13,4 +14,11 @@ public class ApiCredentials : EventArgs
|
||||
[Key(nameof(Password))]
|
||||
[Option('p', "pass", Required = true, HelpText = "User Password")]
|
||||
public string Password { get; set; } = null!;
|
||||
}
|
||||
}
|
||||
|
||||
[Verb("credsEncrypted", isDefault: true, HelpText = "Encrypted Credentials")]
|
||||
public class ApiCredentialsEncrypted
|
||||
{
|
||||
[Option('c', "creds", Group = "auto", HelpText = "Encrypted Creds")]
|
||||
public string Creds { get; set; } = null!;
|
||||
}
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
namespace Azaion.Common.DTO;
|
||||
|
||||
public class DirectoriesConfig
|
||||
|
||||
{
|
||||
public string ApiResourcesDirectory { get; set; } = null!;
|
||||
public string? ApiResourcesDirectory { get; set; } = null!;
|
||||
|
||||
public string VideosDirectory { get; set; } = null!;
|
||||
public string LabelsDirectory { get; set; } = null!;
|
||||
|
||||
Reference in New Issue
Block a user