NucuCar/NucuCar.Sensors/Abstractions/ISensor.cs

7 lines
No EOL
167 B
C#

namespace NucuCar.Sensors.Abstractions
{
public interface ISensor<out TSensor> where TSensor : GenericTelemeterSensor
{
TSensor Object { get; }
}
}