Refactor common data structure for wallet into SigningContext

This commit is contained in:
nicolas.dorier
2020-05-25 06:27:01 +09:00
parent 25e6f82aa3
commit 35432d919c
15 changed files with 129 additions and 126 deletions

View File

@@ -7,9 +7,7 @@ namespace BTCPayServer.Models.WalletViewModels
{
public class WalletSendVaultModel
{
public string OriginalPSBT { get; set; }
public string WalletId { get; set; }
public string PSBT { get; set; }
public string WebsocketPath { get; set; }
public SigningContextModel SigningContext { get; set; } = new SigningContextModel();
}