mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-20 22:44:27 +01:00
10 lines
214 B
C#
10 lines
214 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.RPC.Models
|
|
{
|
|
public class GetFeeEstimateRequest
|
|
{
|
|
[JsonProperty("grace_blocks")] public int? GraceBlocks { get; set; }
|
|
}
|
|
}
|