mirror of
https://github.com/MAGICGrants/btcpayserver-monero-plugin.git
synced 2026-01-09 02:47:53 -05:00
23 lines
745 B
C#
23 lines
745 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.Configuration
|
|
{
|
|
public class MoneroLikeConfiguration
|
|
{
|
|
public Dictionary<string, MoneroLikeConfigurationItem> MoneroLikeConfigurationItems { get; set; } =
|
|
new Dictionary<string, MoneroLikeConfigurationItem>();
|
|
}
|
|
|
|
public class MoneroLikeConfigurationItem
|
|
{
|
|
public Uri DaemonRpcUri { get; set; }
|
|
public Uri InternalWalletRpcUri { get; set; }
|
|
public string WalletDirectory { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string CashCowWalletDirectory { get; set; }
|
|
public Uri CashCowWalletRpcUri { get; set; }
|
|
}
|
|
}
|