btcpayserver/BTCPayServer/Models/CustodianAccountViewModels/TradePrepareViewModel.cs

10 lines
210 B
C#
Raw Normal View History

using BTCPayServer.Abstractions.Custodians.Client;
namespace BTCPayServer.Models.CustodianAccountViewModels;
public class TradePrepareViewModel : AssetQuoteResult
{
public decimal MaxQty { get; set; }
2023-04-10 11:07:03 +09:00
}