NucuCar/NucuCar.Sensors/Abstractions/SensorResponse.cs

11 lines
239 B
C#
Raw Permalink 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 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
}
}