AutoCatAvalonia/AutoCatCore/Model/VehicleEngine.cs

14 lines
291 B
C#

using Realms;
namespace AutoCatCore.Model
{
public class VehicleEngine: EmbeddedObject
{
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; }
}
}