mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
12 lines
323 B
C#
12 lines
323 B
C#
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class CustodianData
|
||
|
{
|
||
|
public string Code { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
public string[] TradableAssetPairs { get; set; }
|
||
|
public string[] WithdrawablePaymentMethods { get; set; }
|
||
|
public string[] DepositablePaymentMethods { get; set; }
|
||
|
|
||
|
}
|