9 lines
175 B
C#
9 lines
175 B
C#
|
using NucuCar.Domain.Telemetry;
|
||
|
|
||
|
namespace NucuCar.Sensors
|
||
|
{
|
||
|
public class Sensor<T> : ISensor<T> where T : class, ITelemeter
|
||
|
{
|
||
|
public T Object { get; }
|
||
|
}
|
||
|
}
|