11 lines
No EOL
264 B
C#
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();
|
|
}
|
|
} |