9 lines
201 B
C#
9 lines
201 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.RPC.Models
|
|
{
|
|
public partial class CreateAccountRequest
|
|
{
|
|
[JsonProperty("label")] public string Label { get; set; }
|
|
}
|
|
}
|