mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
18 lines
418 B
C#
18 lines
418 B
C#
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class TradeQuoteResponseData
|
||
|
{
|
||
|
public decimal Bid { get; }
|
||
|
public decimal Ask { get; }
|
||
|
public string ToAsset { get; }
|
||
|
public string FromAsset { get; }
|
||
|
|
||
|
public TradeQuoteResponseData(string fromAsset, string toAsset, decimal bid, decimal ask)
|
||
|
{
|
||
|
FromAsset = fromAsset;
|
||
|
ToAsset = toAsset;
|
||
|
Bid = bid;
|
||
|
Ask = ask;
|
||
|
}
|
||
|
}
|