using PartSource.Data.Models; using System; using System.Collections.Generic; using System.Text; namespace PartSource.Data.Dtos { public class VehicleFitmentDto : VehicleFitment { public string PartDescription { get; set; } // May not be needed, but don't remove just yet public IList SubmodelNames { get; set; } public IList DriveTypes { get; set; } public IList Notes { get; set; } } }