Files
Yi.Framework/Yi.Abp.Net8/tool/Yi.Abp.Tool/ICommand.cs
2024-11-05 22:12:30 +08:00

20 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.CommandLineUtils;
using Volo.Abp.DependencyInjection;
namespace Yi.Abp.Tool
{
public interface ICommand:ISingletonDependency
{
public string Command { get; }
public string? Description { get; }
void CommandLineApplication(CommandLineApplication application);
}
}