Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Ref1 Att11="XXX" Att21="YYY" Att31="ZZZ">
  3. <Ref2 Att12="AAA" Att22="BBB" Att32="CCC">
  4. <Ref3 Att13="111" Att23="222" Att33="333"/>
  5. </Ref2>
  6. </Ref1>
  7.  
  8. public class Ref1
  9. {
  10. public string Att11 { get; set; }
  11. public string Att21 { get; set; }
  12. public string Att31 { get; set; }
  13.  
  14. public List<Ref2> ref2;
  15. }
  16.  
  17. public class Ref2
  18. {
  19. public string Att12 { get; set; }
  20. public string Att22 { get; set; }
  21. public string Att32 { get; set; }
  22.  
  23. public Ref3 ref3;
  24. }
  25.  
  26. public class Ref3
  27. {
  28. public string Att13 { get; set; }
  29. public string Att23 { get; set; }
  30. public string Att33 { get; set; }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement