btcpayserver/BTCPayServer/Services/Altcoins/Monero/Payments/MoneroLikePaymentData.cs

27 lines
795 B
C#
Raw Normal View History

#if ALTCOINS
using BTCPayServer.Client.Models;
2019-09-30 10:32:43 +02:00
using BTCPayServer.Payments;
using BTCPayServer.Plugins.Altcoins;
2020-06-28 17:55:27 +09:00
using BTCPayServer.Services.Altcoins.Monero.Utils;
2019-09-30 10:32:43 +02:00
using BTCPayServer.Services.Invoices;
namespace BTCPayServer.Services.Altcoins.Monero.Payments
2019-09-30 10:32:43 +02:00
{
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; }
2019-09-30 10:32:43 +02:00
2022-11-21 19:55:13 +01:00
public long LockTime { get; set; } = 0;
public string GetPaymentProof()
{
return null;
}
2019-09-30 10:32:43 +02:00
}
}
2020-07-28 22:48:51 +02:00
#endif