17 lines
345 B
C#
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; }
|
|
}
|