10 lines
173 B
C#
10 lines
173 B
C#
namespace AutoCatCore.Model
|
|
{
|
|
public class VehicleBrand
|
|
{
|
|
public int Id { get; set; }
|
|
public VehicleName Name { get; set; }
|
|
public string Logo { get; set; }
|
|
}
|
|
}
|