1 //------------------------------------------------------------------------------
2 // <copyright file="IColumnMapping.cs" company="Microsoft">
3 //      Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">markash</owner>
6 // <owner current="true" primary="false">laled</owner>
7 //------------------------------------------------------------------------------
8 
9 namespace System.Data {
10     using System;
11 
12     public interface IColumnMapping {
13 
14         string DataSetColumn {
15             get;
16             set;
17         }
18 
19         string SourceColumn {
20             get;
21             set;
22         }
23     }
24 }
25