You've already forked linux-packaging-mono
							
							
		
			
	
	
		
			29 lines
		
	
	
		
			731 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
		
			731 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|   | //------------------------------------------------------------------------------ | ||
|  | // <copyright file="ITableMapping.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 ITableMapping { | ||
|  | 
 | ||
|  |         IColumnMappingCollection ColumnMappings { | ||
|  |             get; | ||
|  |         } | ||
|  | 
 | ||
|  |         string DataSetTable { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  | 
 | ||
|  |         string SourceTable { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |     } | ||
|  | } |