initial commit
This commit is contained in:
15
src/komgapi/schemas/Collection.py
Normal file
15
src/komgapi/schemas/Collection.py
Normal 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
|
||||
Reference in New Issue
Block a user