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

23 lines
468 B
C#

namespace AutobusApi.Domain.Entities;
public class Bus : 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 HasClimateControl { get; set; }
public bool HasWC { get; set; }
public bool HasWiFi { get; set; }
public bool HasMultimedia { get; set; }
public bool HasOutlets { get; set; }
}