using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.Compiler { public interface IExecutable { /// /// 是否执行 /// bool IsExecuteState { get; set; } /// /// 运行程序 注册事件 /// void Register(); /// /// 控件类型 /// string ControlType { get; } } }