NucuCar/NucuCar.Sensors/ISensor.cs

9 lines
177 B
C#
Raw Normal View History

2019-11-30 15:44:54 +00:00
using NucuCar.Domain.Telemetry;
namespace NucuCar.Sensors
{
public interface ISensor<out TSensor> where TSensor : class, new()
{
TSensor Object { get; }
}
}