btcpayserver/BTCPayServer/Plugins/Altcoins/Zcash/RPC/Models/GetTransferByTransactionIdRequest.cs

12 lines
302 B
C#
Raw Normal View History

using Newtonsoft.Json;
namespace BTCPayServer.Services.Altcoins.Zcash.RPC.Models
{
public class GetTransferByTransactionIdRequest
{
[JsonProperty("txid")] public string TransactionId { get; set; }
[JsonProperty("account_index")] public long AccountIndex { get; set; }
}
}