Files
komgAPI/src/komgapi/schemas/Collection.py
2025-04-17 10:57:57 +02:00

17 lines
261 B
Python

from __future__ import annotations
from typing import List
from dataclasses import dataclass
@dataclass
class Collection:
id: str
name: str
ordered: bool
seriesIds: List[str]
createdDate: str
lastModifiedDate: str
filtered: bool