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