NucuCar/NucuCar.Sensors/Abstractions/ISensor.cs

7 lines
167 B
C#
Raw Normal View History

2020-08-01 15:07:13 +00:00
namespace NucuCar.Sensors.Abstractions
2019-11-30 15:44:54 +00:00
{
2020-04-20 10:20:12 +00:00
public interface ISensor<out TSensor> where TSensor : GenericTelemeterSensor
2019-11-30 15:44:54 +00:00
{
TSensor Object { get; }
}
}