IDomainField.cs 398 B

123456789101112131415161718192021222324
  1. //
  2. // System.Data.Mapping.IDomainField
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Mapping {
  11. public interface IDomainField
  12. {
  13. #region Properties
  14. IDomainStructure DomainStructure { get; }
  15. string Name { get; }
  16. #endregion // Properties
  17. }
  18. }
  19. #endif // NET_1_2