9 lines
208 B
Python
9 lines
208 B
Python
"""Pydantic Base Schema - GENERATED FILE"""
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class BaseSchema(BaseModel):
|
|
"""Base schema with ORM mode."""
|
|
model_config = ConfigDict(from_attributes=True)
|