9 lines
214 B
C#
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> { }
|
|
}
|