Files
fast_api_livetse/backend/schemas.py
2026-05-09 22:21:38 +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