mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
10 lines
214 B
C#
10 lines
214 B
C#
using BTCPayServer.Payments;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.Payments
|
|
{
|
|
public class ZcashPaymentMethodConfig
|
|
{
|
|
public long AccountIndex { get; set; }
|
|
}
|
|
}
|