mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
7 lines
157 B
C#
7 lines
157 B
C#
|
namespace BTCPayServer.Client.Models;
|
|||
|
|
|||
|
public class StoreRateResult
|
|||
|
{
|
|||
|
public string CurrencyPair { get; set; }
|
|||
|
public decimal Rate { get; set; }
|
|||
|
}
|