mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-05 23:24:27 +01:00
* Allow multi-step settings in custodian * Fix CustodianAccount.Name not saved * Reuse TradeQuantity for SimulateTrade * TradeQuantityJsonConverter accepts numerics * Fix build
14 lines
341 B
C#
14 lines
341 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; }
|
|
}
|
|
}
|