dot/src/Guid/Option.cs
nsnail de264e58a0
1.1.0 (#2)
* <feat> 多语言支持
* <feat> text tool 只读模式
2022-12-01 17:26:37 +08:00

8 lines
313 B
C#

namespace Dot.Guid;
[Verb("guid", HelpText = nameof(Strings.GuidTool), ResourceType = typeof(Strings))]
public class Option : IOption
{
[Option('u', "upper", HelpText = nameof(Strings.UseUppercase), Default = false, ResourceType = typeof(Strings))]
public bool Upper { get; set; } //normal options here
}