10 lines
166 B
Python
10 lines
166 B
Python
from pydantic import ConfigDict
|
|
|
|
|
|
class ObjModelMixin:
|
|
"""
|
|
Shared code for ObjModel.
|
|
"""
|
|
id: int
|
|
|
|
model_config = ConfigDict(from_attributes=True)
|