AutoCatAvalonia/AutoCatCore/Model/VehicleEngine.cs
2023-07-19 00:42:11 +03:00

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; }
}
}