14 lines
385 B
C#
14 lines
385 B
C#
namespace Model
|
|
{
|
|
public class PaintCodeDictOutput
|
|
{
|
|
public string Id { get; set; }
|
|
public string PaintCode { get; set; }
|
|
public string Primer { get; set; }
|
|
public string IntermediatePaint { get; set; }
|
|
public string Topcoat { get; set; }
|
|
public string ColorCode { get; set; }
|
|
public int? SortIndex { get; set; }
|
|
}
|
|
}
|