mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
12 lines
288 B
C#
12 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; }
|
|
}
|
|
}
|