mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
13 lines
340 B
C#
13 lines
340 B
C#
using BTCPayServer.Abstractions.Form;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Models.CustodianAccountViewModels
|
|
{
|
|
public class EditCustodianAccountViewModel
|
|
{
|
|
|
|
public CustodianAccountData CustodianAccount { get; set; }
|
|
public Form ConfigForm { get; set; }
|
|
public string Config { get; set; }
|
|
}
|
|
}
|