mirror of
https://github.com/MAGICGrants/btcpayserver-monero-plugin.git
synced 2026-01-09 02:47:53 -05:00
21 lines
650 B
C#
21 lines
650 B
C#
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Plugins.Altcoins;
|
|
using BTCPayServer.Plugins.Monero.Utils;
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.Payments
|
|
{
|
|
public class MoneroLikePaymentData
|
|
{
|
|
public long SubaddressIndex { get; set; }
|
|
public long SubaccountIndex { get; set; }
|
|
public long BlockHeight { get; set; }
|
|
public long ConfirmationCount { get; set; }
|
|
public string TransactionId { get; set; }
|
|
public long? InvoiceSettledConfirmationThreshold { get; set; }
|
|
|
|
public long LockTime { get; set; } = 0;
|
|
}
|
|
}
|