mirror of https://github.com/logos-co/open-law.git
10 lines
129 B
Python
10 lines
129 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class User(BaseModel):
|
||
|
id: int
|
||
|
username: str
|
||
|
|
||
|
class Config:
|
||
|
orm_mode = True
|