mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 19:02:01 +01:00
19 lines
547 B
C#
19 lines
547 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BTCPayServer.Services.Altcoins.Zcash.Configuration
|
||
|
{
|
||
|
public class ZcashLikeConfiguration
|
||
|
{
|
||
|
public Dictionary<string, ZcashLikeConfigurationItem> ZcashLikeConfigurationItems { get; set; } =
|
||
|
new Dictionary<string, ZcashLikeConfigurationItem>();
|
||
|
}
|
||
|
|
||
|
public class ZcashLikeConfigurationItem
|
||
|
{
|
||
|
public Uri DaemonRpcUri { get; set; }
|
||
|
public Uri InternalWalletRpcUri { get; set; }
|
||
|
public string WalletDirectory { get; set; }
|
||
|
}
|
||
|
}
|