mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
12 lines
375 B
C#
12 lines
375 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.Payments
|
|
{
|
|
public class MoneroSupportedPaymentMethod : ISupportedPaymentMethod
|
|
{
|
|
|
|
public string CryptoCode { get; set; }
|
|
public long AccountIndex { get; set; }
|
|
public PaymentMethodId PaymentId => new PaymentMethodId(CryptoCode, MoneroPaymentType.Instance);
|
|
}
|
|
}
|