Spaces:
Running
on
Zero
Running
on
Zero
File size: 195 Bytes
a746d34 |
1 2 3 4 5 6 7 8 9 10 11 |
from pydantic import BaseModel
from app.models import User
class UserSchema(BaseModel):
id: int
username: str
profile: str
team_id: int
class Config:
orm_mode = True |