9 lines
No EOL
182 B
C#
9 lines
No EOL
182 B
C#
using NucuCar.Domain.Telemetry;
|
|
|
|
namespace NucuCar.Sensors
|
|
{
|
|
public interface ISensor<out TSensor> where TSensor : class, ITelemeter
|
|
{
|
|
TSensor Object { get; }
|
|
}
|
|
} |