NucuCar/NucuCar.Sensors/ISensor.cs
2019-11-30 17:44:54 +02:00

9 lines
No EOL
177 B
C#

using NucuCar.Domain.Telemetry;
namespace NucuCar.Sensors
{
public interface ISensor<out TSensor> where TSensor : class, new()
{
TSensor Object { get; }
}
}