mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
17 lines
340 B
C#
17 lines
340 B
C#
|
using Newtonsoft.Json.Linq;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models
|
||
|
{
|
||
|
public abstract class CustodianAccountBaseData
|
||
|
{
|
||
|
public string CustodianCode { get; set; }
|
||
|
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public string StoreId { get; set; }
|
||
|
|
||
|
public JObject Config { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|