mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
11 lines
290 B
C#
11 lines
290 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
|
|
{
|
|
public partial class CreateAddressRequest
|
|
{
|
|
[JsonProperty("account_index")] public long AccountIndex { get; set; }
|
|
[JsonProperty("label")] public string Label { get; set; }
|
|
}
|
|
}
|