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;