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