kenken999's picture
test
1f074d8
raw
history blame
165 Bytes
from pydantic import BaseModel
from typing import List
class UserSchema(BaseModel):
id: int
username: str
profile: str
tags: List[str]
team: str