mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
15 lines
267 B
C#
15 lines
267 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class CustodianAccountResponse: CustodianAccountData
|
||
|
{
|
||
|
public IDictionary<string, decimal> AssetBalances { get; set; }
|
||
|
|
||
|
public CustodianAccountResponse()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|