2020-04-20 10:20:12 +00:00
|
|
|
using NucuCar.Domain.Sensors;
|
2019-11-30 15:44:54 +00:00
|
|
|
|
|
|
|
namespace NucuCar.Sensors
|
|
|
|
{
|
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; }
|
|
|
|
}
|
|
|
|
}
|