using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PluginBase { public interface ICommand { string 名称 { get; }//Name string 描述 { get; }//Description int 执行(); } }