Files
kittycad.py/kittycad/models/new_annotation.py

8 lines
191 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class NewAnnotation(BaseModel):
"""The response from the `NewAnnotation` endpoint."""
model_config = ConfigDict(protected_namespaces=())