9 lines
No EOL
204 B
C#
9 lines
No EOL
204 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.RPC.Models
|
|
{
|
|
public class GetFeeEstimateRequest
|
|
{
|
|
[JsonProperty("grace_blocks")] public int? GraceBlocks { get; set; }
|
|
}
|
|
} |