10 lines
No EOL
279 B
C#
10 lines
No EOL
279 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.RPC.Models
|
|
{
|
|
public partial class CreateAddressRequest
|
|
{
|
|
[JsonProperty("account_index")] public long AccountIndex { get; set; }
|
|
[JsonProperty("label")] public string Label { get; set; }
|
|
}
|
|
} |