MappingAccess.cs 305 B

123456789101112131415161718192021
  1. //
  2. // System.Data.Mapping.MappingAccess
  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 enum MappingAccess
  12. {
  13. Read,
  14. ReadWrite,
  15. Write
  16. }
  17. }
  18. #endif // NET_1_2