btcpayserver/BTCPayServer/Models/WalletViewModels/WalletSendLedgerModel.cs
2019-11-08 21:21:23 +09:00

15 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.WalletViewModels
{
public class WalletSendLedgerModel
{
public string WebsocketPath { get; set; }
public string PSBT { get; set; }
public string HintChange { get; set; }
}
}