autobus-api_old/AutobusApi.Domain/Entities/Aircraft.cs
2023-11-15 18:57:51 +02:00

17 lines
345 B
C#

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