mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-21 04:10:13 +00:00
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
|