mirror of
https://github.com/flibusta-apps/telegram_files_server.git
synced 2025-12-06 12:35:39 +01:00
17 lines
304 B
Python
17 lines
304 B
Python
from datetime import datetime
|
|
|
|
from pydantic import BaseModel, constr
|
|
|
|
|
|
class CreateUploadedFile(BaseModel):
|
|
backend: constr(max_length=16) # type: ignore
|
|
data: dict
|
|
upload_time: datetime
|
|
|
|
|
|
class UploadedFile(BaseModel):
|
|
id: int
|
|
backend: str
|
|
data: dict
|
|
upload_time: datetime
|