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

12 lines
338 B
C#
Raw Normal View History

using Newtonsoft.Json;
namespace BTCPayServer.Services.Altcoins.Zcash.RPC.Models
{
public class GetFeeEstimateResponse
{
[JsonProperty("fee")] public long Fee { get; set; }
[JsonProperty("status")] public string Status { get; set; }
[JsonProperty("untrusted")] public bool Untrusted { get; set; }
}
}