UI_SequentMicrosystems-RPI/Models/RTD8TMPointModel.cs

9 lines
177 B
C#
Raw Normal View History

2023-12-16 08:59:53 +01:00
namespace UI_SequentMicrosystems.Models
{
public class RTD8TMPointModel
2023-12-16 08:59:53 +01:00
{
2023-12-17 18:09:39 +01:00
public float Value { get; set; }
2023-12-16 08:59:53 +01:00
public DateTime Time { get; set; }
}
}