9 lines
No EOL
197 B
C#
9 lines
No EOL
197 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.RPC.Models
|
|
{
|
|
public partial class GetHeightResponse
|
|
{
|
|
[JsonProperty("height")] public long Height { get; set; }
|
|
}
|
|
} |