Current state, whatever that means

This commit is contained in:
2022-03-17 20:04:12 -04:00
parent fb6dbdfaa7
commit 60edbee0b8
22 changed files with 1087 additions and 156 deletions

View File

@@ -0,0 +1,14 @@
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; }
}
}