using System; using System.Collections.Generic; namespace BTCPayServer.Models.CustodianAccountViewModels { public class ViewCustodianAccountBalancesViewModel { public Dictionary AssetBalances { get; set; } public string AssetBalanceExceptionMessage { get; set; } public string StoreDefaultFiat { get; set; } public decimal DustThresholdInFiat { get; set; } public bool CanDeposit { get; set; } } }