kenken999's picture
te
a746d34
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