XmlMapping.cs 317 B

1234567891011121314151617181920212223
  1. //
  2. // XmlMapping.cs:
  3. //
  4. // Author:
  5. // John Donagher ([email protected])
  6. //
  7. // (C) 2002 John Donagher
  8. //
  9. using System;
  10. namespace System.Xml.Serialization
  11. {
  12. /// <summary>
  13. /// Summary description for XmlMapping.
  14. /// </summary>
  15. public abstract class XmlMapping
  16. {
  17. internal XmlMapping ()
  18. {
  19. }
  20. }
  21. }