NucuCar/NucuCar.Sensors/ISensor.cs
2020-04-20 13:20:12 +03:00

9 lines
No EOL
185 B
C#

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