Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/Event/EventDefine.cs

20 lines
394 B
C#
Raw Normal View History

using System;
2023-04-13 11:51:03 +08:00
using System.Collections.Generic;
using System.Xml.Serialization;
namespace Aitex.Core.RT.Event
{
/// <summary>
/// 系统支持的事件类型列表。
/// </summary>
2023-04-13 11:51:03 +08:00
[Serializable]
public class EventDefine
{
/// <summary>
/// 返回系统定义的事件类型。
/// </summary>
2023-04-13 11:51:03 +08:00
[XmlElement("EventDefinition")]
public List<EventItem> Types { get; set; }
2023-04-13 11:51:03 +08:00
}
}