API_SequentMicrosystems-RPI/Models/PointsModel.cs

19 lines
203 B
C#
Raw Normal View History

2023-11-25 08:24:04 +00:00
namespace API_SequentMicrosystems.Models
{
public class PointsModel
{
public DateTime Time { get; set; }
public SortedList<byte, float[]> RTDDA { get; set; }
}
}