mirror of
https://github.com/MAGICGrants/btcpayserver-monero-plugin.git
synced 2026-01-09 18:57:54 -05:00
9 lines
266 B
C#
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; }
|
|
} |