| 123456789101112131415161718192021222324 |
- //
- // System.Data.Mapping.IDomainFieldJoin
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Mapping {
- public interface IDomainFieldJoin
- {
- #region Properties
- IDomainField FromDomainField { get; }
- IDomainField ToDomainField { get; }
- #endregion // Properties
- }
- }
- #endif // NET_1_2
|