mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
16 lines
485 B
C#
16 lines
485 B
C#
|
using System;
|
||
|
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 StoreDefaultFiat { get; set; }
|
||
|
public decimal DustThresholdInFiat { get; set; }
|
||
|
public bool CanDeposit { get; set; }
|
||
|
}
|
||
|
}
|