initial commit

This commit is contained in:
2025-02-17 20:28:17 +01:00
commit e685c7b930
53 changed files with 3285 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
from __future__ import annotations
from typing import List
from pydantic import BaseModel
class Collection(BaseModel):
id: str
name: str
ordered: bool
seriesIds: List[str]
createdDate: str
lastModifiedDate: str
filtered: bool