25 lines
850 B
C#
25 lines
850 B
C#
using CShocker.Ranges;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace CShocker.Shockers.Abstract;
|
|
|
|
public abstract class HttpShocker : Shocker
|
|
{
|
|
protected readonly HttpClient HttpClient = new();
|
|
// ReSharper disable twice MemberCanBeProtected.Global external usage
|
|
public string Endpoint { get; init; }
|
|
public string ApiKey { get; init; }
|
|
|
|
protected HttpShocker(List<string> shockerIds, IntensityRange intensityRange, DurationRange durationRange, string apiKey, string endpoint, ShockerApi apiType, ILogger? logger = null) : base(shockerIds, intensityRange, durationRange, apiType, logger)
|
|
{
|
|
Endpoint = endpoint;
|
|
ApiKey = apiKey;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{base.ToString()}\n" +
|
|
$"Endpoint: {Endpoint}\n" +
|
|
$"ApiKey: {ApiKey}";
|
|
}
|
|
} |