mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 18:06:08 +01:00
20 lines
531 B
C#
20 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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|