mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
18 lines
553 B
C#
18 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.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; }
|
|
}
|
|
}
|