9 lines
		
	
	
		
			210 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			210 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Elwig.Models.Dtos;
 | 
						|
 | 
						|
namespace Elwig.Helpers.Export {
 | 
						|
    /// <summary>
 | 
						|
    /// Interface for exporting banking data
 | 
						|
    /// </summary>
 | 
						|
    public interface IBankingExporter : IExporter<Transaction> { }
 | 
						|
}
 |