mirror of
https://github.com/nsnail/dot.git
synced 2025-06-17 21:13:21 +08:00
8 lines
297 B
C#
8 lines
297 B
C#
namespace Dot.Guid;
|
|
|
|
[Verb("guid", HelpText = nameof(Str.GuidTool), ResourceType = typeof(Str))]
|
|
public class Option : IOption
|
|
{
|
|
[Option('u', "upper", HelpText = nameof(Str.UseUppercase), Default = false, ResourceType = typeof(Str))]
|
|
public bool Upper { get; set; } //normal options here
|
|
} |