hulai-admin-api/app/schemas/site_image.py
刘涛 8c0a5f489d Initial commit: hulai admin API backend
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-22 22:01:23 +08:00

19 行
364 B
Python

from __future__ import annotations
from pydantic import BaseModel
class SiteImageSchema(BaseModel):
group_name: str
image_key: str
image_path: str
label: str | None = None
size_hint: str | None = None
description: str | None = None
class SiteImageResponse(SiteImageSchema):
id: int
class Config:
from_attributes = True