This commit is contained in:
2020-09-02 20:53:34 -04:00
parent 85d99d2615
commit d06925204d
38 changed files with 913 additions and 679 deletions

View File

@@ -6,12 +6,16 @@ namespace PartSource.Data.Dtos
{
public class EngineDto
{
/// <example>24294</example>
public int EngineConfigId { get; set; }
public string Description { get; set; }
/// <example>V10-5204cc 5.2L FI DKAA 602HP</example>
public string EngineDescription { get; set; }
public string Make { get; set; }
/// <example>Audi</example>
public string MakeName { get; set; }
/// <example>73</example>
public int MakeId { get; set; }
}
}