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