10 lines
No EOL
275 B
C#
10 lines
No EOL
275 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.RPC.Models
|
|
{
|
|
public partial class OpenWalletRequest
|
|
{
|
|
[JsonProperty("filename")] public string Filename { get; set; }
|
|
[JsonProperty("password")] public string Password { get; set; }
|
|
}
|
|
} |