using BPASmartClient.MessageName.接收消息Model;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
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; }
/////
///// 消息名称
/////
//ObservableCollection EventNameList { get; }
}
}