XmlSchemaContentModel.cs 427 B

12345678910111213141516171819
  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 XmlSchemaContentModel.
  9. /// </summary>
  10. public abstract class XmlSchemaContentModel : XmlSchemaAnnotated
  11. {
  12. protected XmlSchemaContentModel()
  13. {
  14. }
  15. [XmlIgnore]
  16. public abstract XmlSchemaContent Content {get; set;}
  17. }
  18. }