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