Files
btcpayserver-monero-plugin/Plugins/Monero/RPC/Models/GenerateBlocks.cs
2025-01-10 16:19:27 +09:00

9 lines
266 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; }
}