NucuCar/NucuCar.Domain/Telemetry/ITelemeter.cs

11 lines
264 B
C#
Raw Normal View History

2019-11-14 14:45:32 +00:00
using System.Collections.Generic;
namespace NucuCar.Domain.Telemetry
2019-11-14 14:45:32 +00:00
{
public interface ITelemeter
2019-11-14 14:45:32 +00:00
{
string GetIdentifier();
2019-11-14 14:45:32 +00:00
/* Dictionary containing the topic and the value */
Dictionary<string, object> GetTelemetryData();
2019-11-14 14:45:32 +00:00
}
}