NucuCar/NucuCar.Sensors/Abstractions/SensorResponse.cs

12 lines
301 B
C#
Raw Normal View History

2021-08-02 18:08:41 +00:00
using System.Collections.Generic;
namespace NucuCar.Sensors.Abstractions
2021-08-01 17:35:54 +00:00
{
public class NucuCarSensorResponse
{
2021-08-01 18:02:56 +00:00
// TODO: Fix names in NucuCar.Sensors.Modules.
2021-08-01 17:35:54 +00:00
public SensorStateEnum State;
2021-08-02 18:08:41 +00:00
public string SensorId;
public List<SensorMeasurement> Data;
2021-08-01 17:35:54 +00:00
}
}