mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-19 06:54:19 +01:00
Add separate signing flow for PSBT
This commit is contained in:
committed by
Andrew Camilleri
parent
d9a8443081
commit
cd93a5ab6b
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
||||
namespace BTCPayServer.Models.WalletViewModels
|
||||
{
|
||||
public class WalletPSBTExportViewModel : WalletPSBTReadyViewModel
|
||||
{
|
||||
public string CryptoCode { get; set; }
|
||||
public string PSBTHex { get; set; }
|
||||
public string PSBT { get; set; }
|
||||
|
||||
[Display(Name = "Upload PSBT from file")]
|
||||
public IFormFile UploadedPSBTFile { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user