btcpayserver/BTCPayServer/Models/CustodianAccountViewModels/ViewCustodianAccountBalancesViewModel.cs
Wouter Samaey de92677b69
Custodian Account Deposit UI (#4024)
Co-authored-by: d11n <mail@dennisreimann.de>
2022-08-09 20:03:55 +02:00

15 lines
534 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Models.CustodianAccountViewModels
{
public class ViewCustodianAccountBalancesViewModel
{
public Dictionary<string,AssetBalanceInfo> AssetBalances { get; set; }
public string AssetBalanceExceptionMessage { get; set; }
public string StoreId { get; set; }
public string StoreDefaultFiat { get; set; }
public decimal DustThresholdInFiat { get; set; }
public string[] DepositablePaymentMethods { get; set; }
}
}