<refactor>

This commit is contained in:
2022-12-05 20:22:18 +08:00
parent 7a0efaf015
commit 3cb3b13f98
22 changed files with 70 additions and 25 deletions

View File

@ -1,6 +1,6 @@
namespace Dot.Color;
public sealed class Main : Tool<Option>
public sealed class Main : ToolBase<Option>
{
public Main(Option opt) : base(opt) { }

View File

@ -1,4 +1,4 @@
namespace Dot.Color;
[Verb("color", HelpText = nameof(Str.ScreenPixelTool), ResourceType = typeof(Str))]
public class Option : IOption { }
public class Option : OptionBase { }