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