mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
15 lines
534 B
C#
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; }
|
|
}
|
|
}
|