mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
16 lines
436 B
C#
16 lines
436 B
C#
#if ALTCOINS
|
|
using BTCPayServer.Payments;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.Payments
|
|
{
|
|
public class ZcashSupportedPaymentMethod : ISupportedPaymentMethod
|
|
{
|
|
|
|
public string CryptoCode { get; set; }
|
|
public long AccountIndex { get; set; }
|
|
[JsonIgnore]
|
|
public PaymentMethodId PaymentId => new PaymentMethodId(CryptoCode, ZcashPaymentType.Instance);
|
|
}
|
|
}
|
|
#endif
|