mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
12 lines
323 B
C#
12 lines
323 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.Payments
|
|
{
|
|
public class MoneroLikeOnChainPaymentMethodDetails
|
|
{
|
|
public long AccountIndex { get; set; }
|
|
public long AddressIndex { get; set; }
|
|
public long? InvoiceSettledConfirmationThreshold { get; set; }
|
|
}
|
|
}
|