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