btcpayserver/BTCPayServer/Altcoins/Monero/Payments/MoneroSupportedPaymentMethod.cs

13 lines
366 B
C#
Raw Normal View History

2019-09-30 10:32:43 +02:00
using BTCPayServer.Payments;
2019-09-30 20:42:31 +09:00
namespace BTCPayServer.Altcoins.Monero.Payments
2019-09-30 10:32:43 +02:00
{
public class MoneroSupportedPaymentMethod : ISupportedPaymentMethod
{
public string CryptoCode { get; set; }
public long AccountIndex { get; set; }
public PaymentMethodId PaymentId => new PaymentMethodId(CryptoCode, MoneroPaymentType.Instance);
}
}