17 lines
261 B
Python
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
|