mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-02 13:44:22 +01:00
11 lines
279 B
C#
11 lines
279 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
|
|
{
|
|
public partial class OpenWalletErrorResponse
|
|
{
|
|
[JsonProperty("code")] public int Code { get; set; }
|
|
[JsonProperty("message")] public string Message { get; set; }
|
|
}
|
|
}
|