frontend sketch on pure web
This commit is contained in:
commit
7d0c459b77
13 changed files with 1054 additions and 0 deletions
21
vnshed/types.py
Normal file
21
vnshed/types.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
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]
|
Loading…
Add table
Add a link
Reference in a new issue