| 12345678910111213141516171819 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaContentModel.
- /// </summary>
- public abstract class XmlSchemaContentModel : XmlSchemaAnnotated
- {
- protected XmlSchemaContentModel()
- {
- }
- [XmlIgnore]
- public abstract XmlSchemaContent Content {get; set;}
- }
- }
|