mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-29 18:48:50 +08:00
11 lines
213 B
C#
11 lines
213 B
C#
using Microsoft.Extensions.CommandLineUtils;
|
|
|
|
namespace AntDesign.Docs.Build.CLI
|
|
{
|
|
public interface IAppCommand
|
|
{
|
|
string Name { get; }
|
|
|
|
void Execute(CommandLineApplication command);
|
|
}
|
|
} |