Guest User

Untitled

a guest
May 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class Configuration
  2. {
  3. public Settings Settings { get; set; }
  4. }
  5. public class Settings
  6. {
  7. [XmlElement("Setting")]
  8. public Setting[] Setting { get; set; }
  9. }
  10. public class Setting
  11. {
  12. //public string Setting { get; set; } // This is where the problem is..
  13. [XmlAttribute]
  14. public string Type { get; set; }
  15. }
Add Comment
Please, Sign In to add comment