UI_SequentMicrosystems-RPI/Models/RTD8TMGraphPointModel.cs

9 lines
182 B
C#
Raw Normal View History

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