XmlSchemaNotation.cs 822 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml.Serialization;
  5. namespace System.Xml.Schema
  6. {
  7. /// <summary>
  8. /// Summary description for XmlSchemaNotation.
  9. /// </summary>
  10. public class XmlSchemaNotation : XmlSchemaAnnotated
  11. {
  12. private string name;
  13. private string pub;
  14. private string system;
  15. public XmlSchemaNotation()
  16. {
  17. }
  18. [System.Xml.Serialization.XmlAttribute("name")]
  19. public string Name
  20. {
  21. get{ return name; }
  22. set{ name = value; }
  23. }
  24. [System.Xml.Serialization.XmlAttribute("public")]
  25. public string Public
  26. {
  27. get{ return pub; }
  28. set{ pub = value; }
  29. }
  30. [System.Xml.Serialization.XmlAttribute("system")]
  31. public string System
  32. {
  33. get{ return system; }
  34. set{ system = value; }
  35. }
  36. }
  37. }