19 lines
478 B
C#
19 lines
478 B
C#
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<string> SubmodelNames { get; set; }
|
|
|
|
public IList<string> DriveTypes { get; set; }
|
|
|
|
public IList<string> Notes { get; set; }
|
|
}
|
|
} |