Files
btcpayserver/BTCPayServer/Configuration/External/ExternalRTL.cs
nicolas.dorier b5d55a2066 Add RTL support
2019-02-22 15:06:52 +09:00

20 lines
546 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Configuration.External
{
public class ExternalRTL : ExternalService, IAccessKeyService
{
public SparkConnectionString ConnectionString { get; }
public ExternalRTL(SparkConnectionString connectionString)
{
if (connectionString == null)
throw new ArgumentNullException(nameof(connectionString));
ConnectionString = connectionString;
}
}
}