ant-design-blazor/site/AntDesign.Docs.Build.CLI/IAppCommand.cs
2020-05-29 00:33:49 +08:00

11 lines
213 B
C#

using Microsoft.Extensions.CommandLineUtils;
namespace AntDesign.Docs.Build.CLI
{
public interface IAppCommand
{
string Name { get; }
void Execute(CommandLineApplication command);
}
}