CShock/CShocker/Shockers/Abstract/SerialShocker.cs

12 lines
349 B
C#
Raw Normal View History

2024-01-17 04:11:30 +01:00
using CShocker.Shockers.ShockerSettings;
using Microsoft.Extensions.Logging;
namespace CShocker.Shockers.Abstract;
2024-01-17 04:36:38 +01:00
public abstract class SerialShocker : Shocker
2024-01-17 04:11:30 +01:00
{
protected SerialShocker(SerialShockerSettings shockerSettings, ILogger? logger = null) : base(shockerSettings, logger)
{
throw new NotImplementedException();
}
}