using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RoboforkApp.DataModel { class VehicleModelList : PointMap { public string VehicleName { get; set; } public List pointMapList = new List(); public List pointScheduleList = new List(); } }