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