mirror of
https://github.com/nsnail/dot.git
synced 2025-12-15 00:15:48 +08:00
<feat> + json工具
This commit is contained in:
@@ -6,10 +6,10 @@ public class Option : OptionBase
|
||||
[Flags]
|
||||
public enum GenerateTypes
|
||||
{
|
||||
Number = 1
|
||||
, LowerCaseLetter = 2
|
||||
, UpperCaseLetter = 4
|
||||
, SpecialCharacter = 8
|
||||
Number = 0b0001
|
||||
, LowerCaseLetter = 0b0010
|
||||
, UpperCaseLetter = 0b0100
|
||||
, SpecialCharacter = 0b1000
|
||||
}
|
||||
|
||||
[Value(1, Required = true, HelpText = nameof(Str.PwdLength), ResourceType = typeof(Str))]
|
||||
|
||||
Reference in New Issue
Block a user