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,7 +7,10 @@ namespace BTCPayServer.Models.WalletViewModels
{
public class SigningContextModel
{
public string PSBT { get; set; }
public string OriginalPSBT { get; set; }
public string PayJoinEndpointUrl { get; set; }
public bool? EnforceLowR { get; set; }
public string ChangeAddress { get; set; }
}
}