VehicleModelList.cs 532 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace RoboforkApp.DataModel
{
    public class VehicleModelList : PointMap
    {
        public string VehicleName { get; set; }
        public double pointMapStart_X { get; set; }
        public double pointMapStart_Y { get; set; }
        public double pointMapEnd_X { get; set; }
        public double pointMapEnd_Y { get; set; }
        public List<PointMap> pointMapList = new List<PointMap>();
    }
}