| 1234567891011121314151617181920 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaGroupBase.
- /// </summary>
- public abstract class XmlSchemaGroupBase : XmlSchemaParticle
- {
- protected XmlSchemaGroupBase()
- {
- }
- [XmlIgnore]
- public abstract XmlSchemaObjectCollection Items { get; }
- }
- }
|