2019-11-14 14:45:32 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2019-11-17 16:27:58 +00:00
|
|
|
namespace NucuCar.Domain.Telemetry
|
2019-11-14 14:45:32 +00:00
|
|
|
{
|
2019-11-17 16:27:58 +00:00
|
|
|
public interface ITelemeter
|
2019-11-14 14:45:32 +00:00
|
|
|
{
|
2019-11-15 15:53:20 +00:00
|
|
|
string GetIdentifier();
|
2019-11-14 14:45:32 +00:00
|
|
|
/* Dictionary containing the topic and the value */
|
2019-11-17 13:29:33 +00:00
|
|
|
Dictionary<string, object> GetTelemetryData();
|
2019-11-14 14:45:32 +00:00
|
|
|
}
|
|
|
|
}
|