mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
bump
This commit is contained in:
@@ -9,6 +9,18 @@ namespace BTCPayServer.Models.WalletViewModels
|
||||
public class WalletPSBTViewModel
|
||||
{
|
||||
public string Decoded { get; set; }
|
||||
string _FileName;
|
||||
public string FileName
|
||||
{
|
||||
get
|
||||
{
|
||||
return string.IsNullOrEmpty(_FileName) ? "psbt-export.psbt" : _FileName;
|
||||
}
|
||||
set
|
||||
{
|
||||
_FileName = value;
|
||||
}
|
||||
}
|
||||
public string PSBT { get; set; }
|
||||
public List<string> Errors { get; set; } = new List<string>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user