btcpayserver/BTCPayServer/Models/CustodianAccountViewModels/TradePrepareViewModel.cs

10 lines
217 B
C#
Raw Normal View History

using BTCPayServer.Abstractions.Custodians.Client;
namespace BTCPayServer.Models.CustodianAccountViewModels;
public class TradePrepareViewModel : AssetQuoteResult
{
public decimal MaxQtyToTrade { get; set; }
}