btcpayserver/BTCPayServer/Services/Altcoins/Monero/Payments/MoneroLikeOnChainPaymentMethodDetails.cs
Nicolas Dorier a3cfb9e5e4
Removal of the Altcoins build (#6177)
* Remove some useless #if ALTCOINS

* Removal of the Altcoins build
2024-08-30 08:34:23 +09:00

11 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; }
}
}