public class AircraftData //stores the data for the startup
{
public string? Registration { get; set; }
public string? Type { get; set; }
public int Seats { get; set; }
public string? Engines { get; set; }
public string? Airline { get; set; }
public DateTime FirstFlight { get; set; }
public string? SpecialLivery { get; set; }
public byte[]? AircraftPicture { get; set; }
public bool Favorite { get; set; }
}
public class SpecificAircraftData
{
public string? Type { get; set; }
public int Seats { get; set; }
public string? Engines { get; set; }
public DateTime FirstFlight { get; set; }
public string? SpecialLivery { get; set; }
public bool Favorite { get; set; }
}
public class AircraftData //stores the data for the startup
{
public string? Registration { get; set; }
public string? Type { get; set; }
public int Seats { get; set; }
public string? Engines { get; set; }
public string? Airline { get; set; }
public DateTime FirstFlight { get; set; }
public string? SpecialLivery { get; set; }
public byte[]? AircraftPicture { get; set; }
public bool Favorite { get; set; }
}
public class SpecificAircraftData
{
public string? Type { get; set; }
public int Seats { get; set; }
public string? Engines { get; set; }
public DateTime FirstFlight { get; set; }
public string? SpecialLivery { get; set; }
public bool Favorite { get; set; }
}