Skip to content
Snippets Groups Projects
Commit 1ba27d57 authored by Arzan Pour, Arshia (UG - SISC)'s avatar Arzan Pour, Arshia (UG - SISC)
Browse files

Merge branch 'minorTouchups' into 'main'

double implementation on airline dash removed.

See merge request ma03081/COM3014!35
parents 874211c5 ab176d5b
No related branches found
No related tags found
No related merge requests found
import Api from "../../helpers/Api";
import UserStorage from "../../helpers/UserStorage";
export interface ISeat {
id: number;
classType: number;
seatNumber: string;
isAvailable: boolean;
}
export interface ISeats {
$id: string;
$values: ISeat[];
}
export interface IFlight {
id: number;
origin: string;
destination: string;
arrivalTime: string;
departureTime: string;
economyCapacity: number;
businessCapacity: number;
economyPrice: number;
businessPrice: number;
seats: ISeats;
}
import { IFlight } from "./CustomerDashboard";
export interface IAirlineDashboardData {
type: "airline";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment