pyCruiseMapper/src/pycruisemapper/classes/shipline.py
2022-09-15 16:54:31 +00:00

15 lines
304 B
Python

from typing import Optional
class ShipLine:
id: int
title: str
url: Optional[str]
def __init__(self, id: int, title: str, url: Optional[str] = None):
self.id = id
self.title = title
self.url = url
def __repr__(self):
return self.__dict__.__repr__()