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