1234567891011121314 |
- using System.Collections.Generic;
- namespace Aitex.RT.FactoryAutomation
- {
- public class FaEventItem
- {
- public string EventName { get; set; }
- public Dictionary<string, string> dvid { get; set; }
- public Dictionary<string, object> objDvid { get; set; }
- public bool IsAlarm { get; set; }
- public string Text { get; set; }
- }
- }
|