<feat> v1.0.1 + guid工具

This commit is contained in:
2022-11-30 13:57:44 +08:00
parent a9fb5dba38
commit d3af9c3bcc
6 changed files with 31 additions and 5 deletions

8
src/Guid/Option.cs Normal file
View File

@@ -0,0 +1,8 @@
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
}