Initial commit
This commit is contained in:
19
PartSource.Automation/Models/Cache/VehicleCacheItem.cs
Normal file
19
PartSource.Automation/Models/Cache/VehicleCacheItem.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using PartSource.Data.Nexpart;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace PartSource.Automation.Models.Cache
|
||||
{
|
||||
public class VehicleCacheItem
|
||||
{
|
||||
public BaseVehicle BaseVehicle { get; set; }
|
||||
|
||||
public IList<int> VehicleIds { get; set; }
|
||||
|
||||
public VehicleCacheItem()
|
||||
{
|
||||
VehicleIds = new List<int>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user