Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1.  
  2. public class Rootobject
  3. {
  4.     public string deviceType { get; set; }
  5.     public Devicedata[] deviceData { get; set; }
  6. }
  7.  
  8. public class Devicedata
  9. {
  10.     public int cameraAt { get; set; }
  11.     public Cameradata[] cameraData { get; set; }
  12. }
  13.  
  14. public class Cameradata
  15. {
  16.     public string type { get; set; }
  17.     public Pointinfo[] pointInfo { get; set; }
  18. }
  19.  
  20. public class Pointinfo
  21. {
  22.     public int frame { get; set; }
  23.     public Position position { get; set; }
  24. }
  25.  
  26. public class Position
  27. {
  28.     public float x { get; set; }
  29.     public float y { get; set; }
  30.     public float z { get; set; }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement