17 lines
255 B
Python
17 lines
255 B
Python
|
|
|
|
class TravelRoute:
|
|
def __init__(self, start_coords, end_coords, ) -> None:
|
|
pass
|
|
|
|
@property
|
|
def duration(self):
|
|
pass
|
|
|
|
@property
|
|
def wait_time(self):
|
|
pass
|
|
|
|
@property
|
|
def eco_score(self):
|
|
pass |