NucuCar/NucuCar.Domain/Telemetry/ITelemeter.cs
2019-11-17 18:27:58 +02:00

11 lines
No EOL
264 B
C#

using System.Collections.Generic;
namespace NucuCar.Domain.Telemetry
{
public interface ITelemeter
{
string GetIdentifier();
/* Dictionary containing the topic and the value */
Dictionary<string, object> GetTelemetryData();
}
}