From 3bbde48796fbb0bfbb7425fe1454dd5e65f34aef Mon Sep 17 00:00:00 2001 From: glax Date: Wed, 17 Jan 2024 04:31:28 +0100 Subject: [PATCH] Fix abstract httpShockersettings --- CShocker/Shockers/ShockerSettings/HttpShockerSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CShocker/Shockers/ShockerSettings/HttpShockerSettings.cs b/CShocker/Shockers/ShockerSettings/HttpShockerSettings.cs index 167e0c3..31a08ee 100644 --- a/CShocker/Shockers/ShockerSettings/HttpShockerSettings.cs +++ b/CShocker/Shockers/ShockerSettings/HttpShockerSettings.cs @@ -3,7 +3,7 @@ using CShocker.Shockers.ShockerSettings.Abstract; namespace CShocker.Shockers.ShockerSettings; -public abstract record HttpShockerSettings(string[] ShockerIds, IntensityRange Intensity, DurationRange Duration, string ApiKey, string Endpoint) : AShockerSettings(ShockerIds, Intensity, Duration) +public record HttpShockerSettings(string[] ShockerIds, IntensityRange Intensity, DurationRange Duration, string ApiKey, string Endpoint) : AShockerSettings(ShockerIds, Intensity, Duration) { internal readonly HttpClient HttpClient = new (); internal readonly string ApiKey = ApiKey, Endpoint = Endpoint;