mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
17 lines
482 B
C#
17 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletSendLedgerModel
|
|
{
|
|
public int FeeSatoshiPerByte { get; set; }
|
|
public bool SubstractFees { get; set; }
|
|
public bool DisableRBF { get; set; }
|
|
public decimal Amount { get; set; }
|
|
public string Destination { get; set; }
|
|
public bool NoChange { get; set; }
|
|
}
|
|
}
|