2019-05-11 17:05:30 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
|
|
|
{
|
|
|
|
|
public class WalletPSBTReadyViewModel
|
|
|
|
|
{
|
|
|
|
|
public string PSBT { get; set; }
|
2019-05-15 08:00:09 +02:00
|
|
|
|
public string SigningKey { get; set; }
|
|
|
|
|
public string SigningKeyPath { get; set; }
|
2019-05-11 17:05:30 +02:00
|
|
|
|
public List<string> Errors { get; set; }
|
2019-05-15 08:00:09 +02:00
|
|
|
|
|
|
|
|
|
public class DestinationViewModel
|
|
|
|
|
{
|
|
|
|
|
public bool Positive { get; set; }
|
|
|
|
|
public string Destination { get; set; }
|
|
|
|
|
public string Balance { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string BalanceChange { get; set; }
|
|
|
|
|
public bool Positive { get; set; }
|
|
|
|
|
public List<DestinationViewModel> Destinations { get; set; } = new List<DestinationViewModel>();
|
|
|
|
|
public string Fee { get; set; }
|
2019-05-16 05:56:06 +02:00
|
|
|
|
public string FeeRate { get; set; }
|
2019-05-11 17:05:30 +02:00
|
|
|
|
}
|
|
|
|
|
}
|