feat: 新增yi-abp工具
This commit is contained in:
23
Yi.Abp.Net8/tool/Yi.Abp.Tool/ICommand.cs
Normal file
23
Yi.Abp.Net8/tool/Yi.Abp.Tool/ICommand.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Volo.Abp.DependencyInjection;
|
||||
|
||||
namespace Yi.Abp.Tool
|
||||
{
|
||||
public interface ICommand:ITransientDependency
|
||||
{
|
||||
/// <summary>
|
||||
/// 命令串
|
||||
/// </summary>
|
||||
public List<string> CommandStrs { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 执行
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public Task InvokerAsync(Dictionary<string,string> options);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user