using System; using System.Collections.Generic; using System.Xml.Serialization; namespace Aitex.Core.RT.Event { /// /// 系统支持的事件类型列表。 /// [Serializable] public class EventDefine { /// /// 返回系统定义的事件类型。 /// [XmlElement("EventDefinition")] public List Types { get; set; } } }