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

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PartSource.Data.Dtos
{
public class MakeDto
{
/// <example>73</example>
public int MakeId { get; set; }
/// <example>Audi</example>
public string MakeName { get; set; }
}
}