LiveStreamPositionDataModel.cs 246 B

12345678910
  1. using System.Collections.Generic;
  2. namespace SWRIS.Models
  3. {
  4. public class LiveStreamPositionDataModel
  5. {
  6. public double Position { get; set; }
  7. public List<ushort[]> SensorData { get; set; } = new List<ushort[]>();
  8. }
  9. }