mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
13 lines
265 B
C#
13 lines
265 B
C#
|
using Newtonsoft.Json.Linq;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models
|
||
|
{
|
||
|
public class CreateCustodianAccountRequest
|
||
|
{
|
||
|
public string CustodianCode { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public JObject Config { get; set; }
|
||
|
}
|
||
|
}
|