| 1234567891011121314151617181920212223 |
- //
- // XmlMapping.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlMapping.
- /// </summary>
- public abstract class XmlMapping
- {
- internal XmlMapping ()
- {
- }
- }
- }
|