8 lines
180 B
Python
8 lines
180 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class SetGridScale(BaseModel):
|
||
|
"""The response from the 'SetGridScale'."""
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|