mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-22 15:35:12 +01:00
12 lines
338 B
C#
12 lines
338 B
C#
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; }
|
|
}
|
|
}
|