mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 10:30:47 +01:00
11 lines
290 B
C#
11 lines
290 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.Payments
|
|
{
|
|
public class ZcashPaymentPromptDetails
|
|
{
|
|
public long AccountIndex { get; set; }
|
|
public long AddressIndex { get; set; }
|
|
public string DepositAddress { get; set; }
|
|
}
|
|
}
|