using System.Collections.Generic; namespace SWRIS.Models { public class LiveStreamPositionDataModel { public double Position { get; set; } public List<ushort[]> SensorData { get; set; } = new List<ushort[]>(); } }