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