mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 19:02:01 +01:00
11 lines
288 B
C#
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; }
|
|
}
|
|
}
|