File size: 165 Bytes
1f074d8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from pydantic import BaseModel
from typing import List

class UserSchema(BaseModel):
    id: int
    username: str
    profile: str
    tags: List[str]
    team: str