//------------------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// Microsoft                                                                 
//------------------------------------------------------------------------------
namespace System.Xml.Schema {
    using System.Collections;
    using System.Xml.Serialization;
    internal class XmlSchemaSubstitutionGroup : XmlSchemaObject {
        ArrayList membersList = new ArrayList();
        XmlQualifiedName examplar = XmlQualifiedName.Empty;
        [XmlIgnore]
        internal ArrayList Members {
            get { return membersList; }
        } 
        [XmlIgnore]
        internal XmlQualifiedName Examplar {
            get { return examplar; }
            set { examplar = value; }
        }
    }
    internal class XmlSchemaSubstitutionGroupV1Compat : XmlSchemaSubstitutionGroup {
        XmlSchemaChoice choice = new XmlSchemaChoice();
        [XmlIgnore]
        internal XmlSchemaChoice Choice {
            get { return choice; }
        }          
    }
}