2025-12-17 00:42:57 +02:00

14 lines
245 B
Python

from pydantic import BaseModel
class PhotoResponse(BaseModel):
id: int
profile_id: int
file_path: str
display_order: int
class PhotoUploadResponse(BaseModel):
id: int
profile_id: int
file_path: str
message: str