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