NAnt build files and System.Data files moved to appropriate directory.
[mono.git] / mcs / class / System.Data / System.Data / IColumnMapping.cs
1 //
2 // System.Data.IColumnMapping.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Associates a data source column with a DataSet column, and is implemented by the DataColumnMapping class, which is used in common by .NET data providers.
14         /// </summary>
15         public interface IColumnMapping
16         {
17                 string DataSetColumn
18                 {
19                         get
20                         {
21                         }
22                         set
23                         {
24                         }
25                 }
26
27                 string SourceColumn
28                 {
29                         get
30                         {
31                         }
32                         set
33                         {
34                         }
35                 }
36         }
37 }