Files
btcpayserver-monero-plugin/Plugins/Monero/RPC/Models/SubaddressAccount.cs
nicolas.dorier c24ef96fd4 Init commit
2025-01-08 18:27:19 +09:00

15 lines
577 B
C#

using Newtonsoft.Json;
namespace BTCPayServer.Plugins.Monero.RPC.Models
{
public partial class SubaddressAccount
{
[JsonProperty("account_index")] public long AccountIndex { get; set; }
[JsonProperty("balance")] public decimal Balance { get; set; }
[JsonProperty("base_address")] public string BaseAddress { get; set; }
[JsonProperty("label")] public string Label { get; set; }
[JsonProperty("tag")] public string Tag { get; set; }
[JsonProperty("unlocked_balance")] public decimal UnlockedBalance { get; set; }
}
}