AutoCatAvalonia/AutoCatCore/Model/VehicleEngine.cs

13 lines
288 B
C#

namespace AutoCatCore.Model
{
public class VehicleEngine
{
public int Id { get; set; }
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; }
}
}