FaEventItem.cs 265 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace Virgo_DRT.HostWrapper
  3. {
  4. public class FaEventItem
  5. {
  6. public string EventName { get; set; }
  7. public Dictionary<string, string> dvid { get; set; }
  8. public bool IsAlarm { get; set; }
  9. }
  10. }