mirror of
https://github.com/nsnail/dot.git
synced 2025-12-16 00:45:47 +08:00
8 lines
217 B
C#
8 lines
217 B
C#
namespace Dot.Guid;
|
|
|
|
[Verb("guid", HelpText = "GUID工具")]
|
|
public class Option : IOption
|
|
{
|
|
[Option('u', "upper", HelpText = "大写", Default = false)]
|
|
public bool Upper { get; set; } //normal options here
|
|
} |