kenken999's picture
test
4549941
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