using System.Collections.Generic; using NucuCar.Domain.Telemetry; namespace NucuCar.Domain.Sensors { /// /// The GenericSensor is an abstract class, which provides a base for abstracting hardware sensors /// with telemetry support. /// See: /// See: /// public abstract class GenericTelemeterSensor : GenericSensor, ITelemeter { protected bool TelemetryEnabled; public abstract string GetIdentifier(); public abstract Dictionary GetTelemetryData(); public abstract bool IsTelemetryEnabled(); } }