mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 19:02:01 +01:00
17 lines
547 B
C#
17 lines
547 B
C#
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Plugins.Altcoins;
|
|
using BTCPayServer.Services.Altcoins.Zcash.Utils;
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.Payments
|
|
{
|
|
public class ZcashLikePaymentData
|
|
{
|
|
public long SubaddressIndex { get; set; }
|
|
public long SubaccountIndex { get; set; }
|
|
public long BlockHeight { get; set; }
|
|
public long ConfirmationCount { get; set; }
|
|
public string TransactionId { get; set; }
|
|
}
|
|
}
|