btcpayserver/BTCPayServer/Services/Altcoins/Zcash/Payments/ZcashPaymentMethodConfig.cs
2024-04-04 16:31:04 +09:00

12 lines
234 B
C#

#if ALTCOINS
using BTCPayServer.Payments;
using Newtonsoft.Json;
namespace BTCPayServer.Services.Altcoins.Zcash.Payments
{
public class ZcashPaymentMethodConfig
{
public long AccountIndex { get; set; }
}
}
#endif