This is a simple wrapper for the Monobank API for .NET
- Obtain your personal access token at Monobank API
- Set HttpClient(why?) and this token in the constructor:
var mono = new Monobank(new HttpClient(), "YOUR_TOKEN");
var currencyInfo = await mono.Currency.GetCurrencyInfoAsync();
var clientInfo = await mono.Personal.GetClientInfoAsync();