kenken999's picture
fda
0f43f8a
raw
history blame
157 Bytes
from pydantic import BaseModel
from app.models import Team
class TeamSchema(BaseModel):
id: int
name: str
class Config:
orm_mode = True