Entity.cs 784 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NoName_CarplateRecognizeCamera_Lab
  5. {
  6. public class SimplaCarPlateRecognizeResult
  7. {
  8. public AlarmInfoPlate AlarmInfoPlate
  9. { get; set; }
  10. }
  11. public class AlarmInfoPlate
  12. {
  13. public string channel { get; set; }
  14. public string deviceName { get; set; }
  15. public string ipaddr { get; set; }
  16. public result result { get; set; }
  17. }
  18. public class result
  19. {
  20. public PlateResult PlateResult { get; set; }
  21. }
  22. public class PlateResult
  23. {
  24. public string colorType { get; set; }
  25. public string direction { get; set; }
  26. public string imagePath { get; set; }
  27. public string license { get; set; }
  28. }
  29. }