namespace AutobusApi.Domain.Entities; public class Aircraft : Vehicle { public Vehicle Vehicle { get; set; } = null!; public string Number { get; set; } = null!; public string Model { get; set; } = null!; public int Capacity { get; set; } public bool HasWiFi { get; set; } public bool HasMultimedia { get; set; } }