mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +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; }
|
|
}
|
|
}
|