21 lines
No EOL
321 B
Python
21 lines
No EOL
321 B
Python
from datetime import datetime
|
|
|
|
class Novel:
|
|
title: str
|
|
description: str
|
|
|
|
vndb: int
|
|
hours_to_read: int
|
|
|
|
tags: list[str]
|
|
genres: list[str]
|
|
|
|
tg_post: str #url::Url
|
|
post_at: datetime
|
|
|
|
class FullNovel:
|
|
data: Novel
|
|
|
|
upload_queue: list[str]
|
|
files: list[str]
|
|
screenshots: list[str] |