Blame view
sources/RoboforkApp/DataModel/VehicleModelList.cs
532 Bytes
fd7150b8b
|
1 2 3 4 5 6 7 8 |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RoboforkApp.DataModel { |
1fe3e8a87
|
9 |
public class VehicleModelList : PointMap |
fd7150b8b
|
10 11 |
{ public string VehicleName { get; set; } |
47aa77821
|
12 13 14 15 |
public double pointMapStart_X { get; set; } public double pointMapStart_Y { get; set; } public double pointMapEnd_X { get; set; } public double pointMapEnd_Y { get; set; } |
fd7150b8b
|
16 |
public List<PointMap> pointMapList = new List<PointMap>(); |
fd7150b8b
|
17 18 |
} } |