Spaces:
Running
on
Zero
Running
on
Zero
File size: 188 Bytes
dfcff8f |
1 2 3 4 5 6 7 8 9 10 11 |
from pydantic import BaseModel
class UserCreate(BaseModel):
username: str
password: str
class UserRead(BaseModel):
id: int
username: str
profile: str
team_id: int |