12 lines
258 B
C#
12 lines
258 B
C#
namespace AutoCatCore.Model
|
|
{
|
|
public class VehicleEngine
|
|
{
|
|
public string Number { get; set; }
|
|
public int? Volume { get; set; }
|
|
public double? PowerKw { get; set; }
|
|
public double? PowerHp { get; set; }
|
|
public string FuelType { get; set; }
|
|
}
|
|
}
|