2021-08-02 18:08:41 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace NucuCar.Sensors.Abstractions
|
2021-08-01 17:35:54 +00:00
|
|
|
|
{
|
2021-08-02 18:09:29 +00:00
|
|
|
|
public class SensorResponse
|
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
|
|
|
|
}
|
|
|
|
|
}
|