| 1234567891011121314151617181920 |
- //
- // System.Data.Mapping.MappingDirection
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Mapping {
- public enum MappingDirection
- {
- Source,
- Target
- }
- }
- #endif // NET_1_2
|