Files
2022-10-05 20:09:00 +08:00

25 lines
386 B
Python

from turtle import heading, width
from pydantic import BaseModel
class Image(BaseModel):
id: int
file_path: str
file_name: str
upload_time: int
size: int
width: int
height: int
class Config:
orm_mode = True
class ImageCreate(BaseModel):
file_path: str
file_name: str
upload_time: int
size: int
width: int
height: int