mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
13 lines
297 B
C#
13 lines
297 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; }
|
||
|
}
|
||
|
}
|