Christian Storb @ STORB Consulting - Money on GitHub

Money on GitHub

Version: 0.9.0NuGetGitHub

NuGet Version NuGet Downloads License

Installation

dotnet add package Money.Unifi --version 0.9.0

Overview

Money on GitHub provides a robust set of tools for working with financial data formats, specifically SEPA XML messages. It supports generating pain.001 credit transfer files and can be extended for various banking needs.

Quick Start

Create a SEPA Credit Transfer (pain.001) file with just a few lines of code:

using Money.Unifi;
var payment = new Pain001Builder()
    .WithDebtor("DE1234567890", "ACME GmbH")
    .AddCreditTransfer("DE0987654321", 100.00m, "Invoice 123")
    .Build();
var xml = payment.ToXml();
File.WriteAllText("pain.001.xml", xml);

Check out the GitHub Repository for full documentation.