mirror of
https://github.com/nsnail/dot.git
synced 2025-04-15 18:02:51 +08:00
8 lines
313 B
C#
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
|
|
} |