mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
18 lines
482 B
C#
18 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; }
|
|
}
|
|
}
|