Blame view
sources/RoboforkApp/DataModel/VehicleModelList.cs
328 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 12 |
{ public string VehicleName { get; set; } public List<PointMap> pointMapList = new List<PointMap>(); |
fd7150b8b
|
13 14 |
} } |