Files
elwig/Elwig/Helpers/Export/IBankingExporter.cs

9 lines
214 B
C#

using Elwig.Helpers.Billing;
namespace Elwig.Helpers.Export {
/// <summary>
/// Interface for exporting banking data
/// </summary>
public interface IBankingExporter : IExporter<Transaction> { }
}