NucuCar/NucuCar.Sensors/ISensor.cs

9 lines
185 B
C#
Raw Normal View History

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; }
}
}