25 lines
657 B
C#
25 lines
657 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="IColumnMapping.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
// <owner current="true" primary="true">markash</owner>
|
||
|
// <owner current="true" primary="false">laled</owner>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Data {
|
||
|
using System;
|
||
|
|
||
|
public interface IColumnMapping {
|
||
|
|
||
|
string DataSetColumn {
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
string SourceColumn {
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
}
|
||
|
}
|