File size: 130 Bytes
95dc2cf
 
 
 
 
 
 
1
2
3
4
5
6
7
from pydantic import BaseModel

class UserSchema(BaseModel):
    username: str
    password: str
    profile: str
    team_id: int