Code-complete v2 vehicle API

This commit is contained in:
2020-07-26 21:52:36 -04:00
parent 48dc190027
commit f2ca3419b0
28 changed files with 1292 additions and 1001 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PartSource.Data.Dtos
{
public class EngineDto
{
public int EngineConfigId { get; set; }
public string Description { get; set; }
public string Make { get; set; }
public int MakeId { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PartSource.Data.Dtos
{
public class SubmodelDto
{
public int Id { get; set; }
public string Name { get; set; }
public string Make { get; set; }
public int MakeId { get; set; }
}
}