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
{
///
/// 命令串
///
public List CommandStrs { get; }
///
/// 执行
///
///
public Task InvokerAsync(Dictionary options, string[] args);
}
}