12 lines
153 B
Python
12 lines
153 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class User(BaseModel):
|
||
|
id: int
|
||
|
email: str
|
||
|
name: str
|
||
|
age: int
|
||
|
|
||
|
class Config:
|
||
|
orm_mode = True
|