10 lines
191 B
C#
10 lines
191 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
|
|
{
|
|
public partial class Peer
|
|
{
|
|
[JsonProperty("info")] public Info Info { get; set; }
|
|
}
|
|
}
|