Blame view
sources/RoboforkApp/DataModel/VehicleModelList.cs
321 Bytes
fd7150b8b
|
1 2 3 4 5 6 7 8 9 10 11 12 |
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<PointMap> pointMapList = new List<PointMap>(); |
fd7150b8b
|
13 14 |
} } |