Files
fast_api_livetse/backend/schemas.py
Anahita-Mahmoudi ed82bf7f1f git add .
git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
2026-05-30 13:29:48 +03:30

11 lines
184 B
Python

from pydantic import BaseModel
class ItemCreate(BaseModel):
title: str
class ItemResponse(BaseModel):
id: int
title: str
class Config:
from_attributes = True