12 lines
No EOL
395 B
C#
12 lines
No EOL
395 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.RPC.Models
|
|
{
|
|
public class OpenWalletResponse
|
|
{
|
|
[JsonProperty("id")] public string Id { get; set; }
|
|
[JsonProperty("jsonrpc")] public string Jsonrpc { get; set; }
|
|
[JsonProperty("result")] public object Result { get; set; }
|
|
[JsonProperty("error")] public ErrorResponse Error { get; set; }
|
|
}
|
|
} |