UI_SequentMicrosystems-RPI/Models/PointsModel.cs

14 lines
246 B
C#
Raw Permalink Normal View History

namespace UI_SequentMicrosystems.Models
{
public class PointsModel
{
/// <summary>
/// RTD8TM data holder
/// </summary>
public SortedList<long, SortedList<byte, List<float>>> RTD8TM = new();
}
}