2022-08-04 04:38:49 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.CustodianAccountViewModels
|
|
|
|
{
|
|
|
|
public class ViewCustodianAccountBalancesViewModel
|
|
|
|
{
|
2023-01-06 14:18:07 +01:00
|
|
|
public Dictionary<string, AssetBalanceInfo> AssetBalances { get; set; }
|
2022-08-04 04:38:49 +02:00
|
|
|
public string AssetBalanceExceptionMessage { get; set; }
|
2023-01-06 14:18:07 +01:00
|
|
|
|
2022-08-09 20:03:55 +02:00
|
|
|
public string StoreId { get; set; }
|
2022-08-04 04:38:49 +02:00
|
|
|
public string StoreDefaultFiat { get; set; }
|
|
|
|
public decimal DustThresholdInFiat { get; set; }
|
2022-08-09 20:03:55 +02:00
|
|
|
public string[] DepositablePaymentMethods { get; set; }
|
2022-08-04 04:38:49 +02:00
|
|
|
}
|
|
|
|
}
|