Skip to content

Commit

Permalink
Create flight_data.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xnkit69 authored Sep 20, 2023
1 parent 57d8063 commit 62b13e7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions day39 /flight_data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class FlightData:

def __init__(self, price, origin_city, origin_airport, destination_city, destination_airport, out_date, return_date):
self.price = price
self.origin_city = origin_city
self.origin_airport = origin_airport
self.destination_city = destination_city
self.destination_airport = destination_airport
self.out_date = out_date
self.return_date = return_date

0 comments on commit 62b13e7

Please sign in to comment.