btcpay-plugin/Plugins/Monero/RPC/Models/GenerateBlocks.cs

9 lines
No EOL
267 B
C#

using Newtonsoft.Json;
namespace BTCPayServer.Plugins.Monero.RPC.Models;
public class GenerateBlocks
{
[JsonProperty("wallet_address")] public string WalletAddress { get; set; }
[JsonProperty("amount_of_blocks")] public int AmountOfBlocks { get; set; }
}