mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
19 lines
531 B
C#
19 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Configuration.External
|
|
{
|
|
public class ExternalSpark : ExternalService
|
|
{
|
|
public SparkConnectionString ConnectionString { get; }
|
|
|
|
public ExternalSpark(SparkConnectionString connectionString)
|
|
{
|
|
if (connectionString == null)
|
|
throw new ArgumentNullException(nameof(connectionString));
|
|
ConnectionString = connectionString;
|
|
}
|
|
}
|
|
}
|