Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. [XmlRoot("page")]
  2. public class Page
  3. {
  4. public Page()
  5. {
  6. }
  7.  
  8. [XmlAttribute("name")]
  9. public string Name
  10. {
  11. get;
  12. set;
  13. }
  14.  
  15. [XmlElement("author")]
  16. public string Author
  17. {
  18. get;
  19. set;
  20. }
  21.  
  22. }
Add Comment
Please, Sign In to add comment