Files
Partsource/PartSource.Data/Dtos/VehicleFitmentDto.cs
2025-02-12 18:12:19 -05:00

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; }
}
}