mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
17 lines
550 B
C#
17 lines
550 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.Abstractions.Custodians;
|
||
|
using BTCPayServer.Data;
|
||
|
|
||
|
namespace BTCPayServer.Models.CustodianAccountViewModels
|
||
|
{
|
||
|
public class ViewCustodianAccountViewModel
|
||
|
{
|
||
|
public ICustodian Custodian { get; set; }
|
||
|
public CustodianAccountData CustodianAccount { get; set; }
|
||
|
public Dictionary<string,AssetBalanceInfo> AssetBalances { get; set; }
|
||
|
public Exception GetAssetBalanceException { get; set; }
|
||
|
public string DefaultCurrency { get; set; }
|
||
|
}
|
||
|
}
|