NucuCar/NucuCar.Sensors/Sensor.cs
2019-11-30 18:55:55 +02:00

9 lines
No EOL
175 B
C#

using NucuCar.Domain.Telemetry;
namespace NucuCar.Sensors
{
public class Sensor<T> : ISensor<T> where T : class, ITelemeter
{
public T Object { get; }
}
}