//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//------------------------------------------------------------------------------
namespace System.Xml.Schema {
using System.Xml.Serialization;
///
///
/// [To be supplied.]
///
public class XmlSchemaSimpleContent : XmlSchemaContentModel {
XmlSchemaContent content;
///
///
/// [To be supplied.]
///
[XmlElement("restriction", typeof(XmlSchemaSimpleContentRestriction)),
XmlElement("extension", typeof(XmlSchemaSimpleContentExtension))]
public override XmlSchemaContent Content {
get { return content; }
set { content = value; }
}
}
}