XmlMapping.cs 415 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // XmlMapping.cs:
  3. //
  4. // Author:
  5. // John Donagher ([email protected])
  6. // Lluis Sanchez Gual ([email protected])
  7. //
  8. // (C) 2002 John Donagher
  9. //
  10. using System;
  11. namespace System.Xml.Serialization
  12. {
  13. public abstract class XmlMapping
  14. {
  15. ObjectMap map;
  16. internal XmlMapping ()
  17. {
  18. }
  19. internal ObjectMap ObjectMap
  20. {
  21. get { return map; }
  22. set { map = value; }
  23. }
  24. }
  25. internal class ObjectMap
  26. {
  27. }
  28. }