6 lines
123 B
Python
6 lines
123 B
Python
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class OrmBase(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|