15 lines
253 B
C#
15 lines
253 B
C#
using PartSource.Data.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PartSource.Data.Dtos
|
|
{
|
|
public class VehicleFitmentDto
|
|
{
|
|
public Fitment Fitment { get; set; }
|
|
|
|
public Vehicle Vehicle { get; set; }
|
|
}
|
|
}
|