btcpayserver/BTCPayServer/Services/Altcoins/Monero/Payments/MoneroPaymentPromptDetails.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
288 B
C#

using BTCPayServer.Payments;
using Newtonsoft.Json;
namespace BTCPayServer.Services.Altcoins.Monero.Payments
{
public class MoneroPaymentPromptDetails
{
public long AccountIndex { get; set; }
public long? InvoiceSettledConfirmationThreshold { get; set; }
}
}