7 lines
204 B
Python
7 lines
204 B
Python
class Serie:
|
|
def __init__(self, titel: str, seizoenen: list[str], baseLocation: str):
|
|
self.titel = titel
|
|
self.seizoenen = ["DUD"] + seizoenen
|
|
self.baseLocation = baseLocation
|
|
|