FaEventItem.cs 374 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace Aitex.RT.FactoryAutomation
  3. {
  4. public class FaEventItem
  5. {
  6. public string EventName { get; set; }
  7. public Dictionary<string, string> dvid { get; set; }
  8. public Dictionary<string, object> objDvid { get; set; }
  9. public bool IsAlarm { get; set; }
  10. public string Text { get; set; }
  11. }
  12. }