15 lines
301 B
Python
15 lines
301 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class MetadataResult(BaseModel):
|
|
media_type: str
|
|
title: str
|
|
authors: str = ""
|
|
narrator: str = ""
|
|
external_id: str = ""
|
|
year: int | None = None
|
|
series: str = ""
|
|
volume: int | None = None
|
|
cover_url: str = ""
|
|
description: str = ""
|