| 123456789101112131415161718192021222324 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaInclude.
- /// </summary>
- public class XmlSchemaInclude : XmlSchemaExternal
- {
- private XmlSchemaAnnotation annotation;
- public XmlSchemaInclude()
- {
- }
- [XmlElement]
- public XmlSchemaAnnotation Annotation
- {
- get{ return annotation; }
- set{ annotation = value; }
- }
- }
- }
|