| 123456789101112131415161718192021222324252627282930313233 |
- //
- // XmlMapping.cs:
- //
- // Author:
- // John Donagher ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- public abstract class XmlMapping
- {
- ObjectMap map;
- internal XmlMapping ()
- {
- }
- internal ObjectMap ObjectMap
- {
- get { return map; }
- set { map = value; }
- }
- }
- internal class ObjectMap
- {
- }
- }
|