initial commit

This commit is contained in:
juul
2025-05-30 11:43:29 +02:00
commit caf2f6efca
6 changed files with 105 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
class Serie:
def __init__(self, titel: str, seizoenen: list[str], baseLocation: str):
self.titel = titel
self.seizoenen = ["DUD"] + seizoenen
self.baseLocation = baseLocation