DustInTheWind.Mintos.Toolkit 1.6.0

Prefix Reserved
dotnet add package DustInTheWind.Mintos.Toolkit --version 1.6.0
                    
NuGet\Install-Package DustInTheWind.Mintos.Toolkit -Version 1.6.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DustInTheWind.Mintos.Toolkit" Version="1.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DustInTheWind.Mintos.Toolkit" Version="1.6.0" />
                    
Directory.Packages.props
<PackageReference Include="DustInTheWind.Mintos.Toolkit" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DustInTheWind.Mintos.Toolkit --version 1.6.0
                    
#r "nuget: DustInTheWind.Mintos.Toolkit, 1.6.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DustInTheWind.Mintos.Toolkit@1.6.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DustInTheWind.Mintos.Toolkit&version=1.6.0
                    
Install as a Cake Addin
#tool nuget:?package=DustInTheWind.Mintos.Toolkit&version=1.6.0
                    
Install as a Cake Tool

Mintos Toolkit

GitHub Repo GitHub Build NuGet Version NuGet Downloads

Mintos Toolkit is a .NET library that helps working with files exported from Mintos.

Mintos is a loan investment platform.

Installation

Package Manager:

Install-Package DustInTheWind.Mintos.Toolkit

.NET CLI:

dotnet add package DustInTheWind.Mintos.Toolkit

Runtime Requirements

  • Library target framework: .NET 8.0 (net8.0)

Features

  • Parse Mintos Statement Documents - Load and parse CSV files exported directly from the Mintos platform

Quick Start

a) Export the Transactions CSV File

In Mintos web application:

  1. Log in.
  2. Click on profile image (top-right) and open Transactions.
  3. Select the date interval you need.
  4. Click "Search" button to apply the filters
  5. Click the Download Selected List (*.csv) link to download the file.

You will get a CSV containing transaction rows that can be parsed with this toolkit.

b) Parse the Exported Document

using DustInTheWind.Mintos.Toolkit;

StatementDocument statementDocument = await StatementDocument.LoadFromFileAsync("statement.csv");

foreach (TransactionRecord transaction in statementDocument)
{
	...
}

CSV Statement Document

Each row is mapped to a TransactionRecord with the following columns:

CSV Column Type TransactionRecord Property Description
Date DateTime Date The date when the transaction occurred.
Transaction ID: string TransactionId A unique identifier for the transaction.
Details string Details Additional details or description of the transaction.
Turnover decimal Turnover The transaction amount.
Balance decimal Balance The account balance after the transaction.
Currency string Currency The currency code (e.g., EUR, USD).
Payment Type string PaymentType The type of payment (e.g., Deposit, Withdrawal, Interest).

Demo Project

The repository includes a sample CLI project in sources/Mintos.Toolkit.Demo that demonstrates:

  • reading statement.csv
  • printing parsed data.

You can use this project as a reference implementation for your own importer/exporter tools.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.6.0 62 6/26/2026
1.5.0 109 6/23/2026
1.4.1 105 6/19/2026
1.4.0 97 6/19/2026
1.3.0 119 6/15/2026
1.2.0 100 6/10/2026
1.1.0 103 6/8/2026
1.0.0 94 6/3/2026

[change] Upgraded CsvHelper package reference to version 33.1.0