mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 10:30:47 +01:00
24 lines
775 B
C#
24 lines
775 B
C#
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Plugins.Altcoins;
|
|
using BTCPayServer.Services.Altcoins.Monero.Utils;
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.Payments
|
|
{
|
|
public class MoneroLikePaymentData : CryptoPaymentData
|
|
{
|
|
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;
|
|
public string GetPaymentProof()
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|