Commit 48b6f02e authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se creó la interfaz para representar los viajes

parent 1b8426ae
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
export interface TravelHistory {
    pastTravels: Travel[];
    activeTravel?: Travel;
}

export interface Travel {
    id: number;
    destination: string;
    imageUri?: string;
    startDate: Date;
    endDate: Date;
}
 No newline at end of file