Greenfield: Add store rates api (#4550)

* Add store rates api

* Improve doc

---------

Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
This commit is contained in:
Andrew Camilleri
2023-01-31 06:42:25 +01:00
committed by GitHub
parent f821e35cb0
commit aad06c583e
9 changed files with 221 additions and 31 deletions

View File

@@ -1,7 +1,10 @@
using System.Collections.Generic;
namespace BTCPayServer.Client.Models;
public class StoreRateResult
{
public string CurrencyPair { get; set; }
public decimal Rate { get; set; }
public decimal? Rate { get; set; }
public List<string> Errors { get; set; }
}