This commit is contained in:
2023-01-30 14:57:09 +08:00
parent 7d1763246f
commit ab0af253a4
52 changed files with 607 additions and 515 deletions

View File

@ -15,12 +15,12 @@ internal sealed class Option : OptionBase
}
[CommandArgument(1, "<password length>")]
[Description(nameof(Str.PwdLength))]
[Localization(typeof(Str))]
[Description(nameof(Ln.PwdLength))]
[Localization(typeof(Ln))]
public int Length { get; set; }
[CommandArgument(0, "<generate type>")]
[Description(nameof(Str.PwdGenerateTypes))]
[Localization(typeof(Str))]
[Description(nameof(Ln.PwdGenerateTypes))]
[Localization(typeof(Ln))]
public GenerateTypes Type { get; set; }
}