XmlSchemaContent.cs 302 B

123456789101112131415
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. namespace System.Xml.Schema
  5. {
  6. /// <summary>
  7. /// Summary description for XmlSchemaContent.
  8. /// </summary>
  9. public abstract class XmlSchemaContent : XmlSchemaAnnotated
  10. {
  11. protected XmlSchemaContent()
  12. {}
  13. }
  14. }