Files
kittycad.py/kittycad/models/annotation_text_options.py
Jess Frazelle 8d476bbec6 pydantic cleanup
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-01-06 18:32:34 -08:00

20 lines
431 B
Python

from pydantic import BaseModel, ConfigDict
from ..models.annotation_text_alignment_x import AnnotationTextAlignmentX
from ..models.annotation_text_alignment_y import AnnotationTextAlignmentY
class AnnotationTextOptions(BaseModel):
"""Options for annotation text"""
point_size: int
text: str
x: AnnotationTextAlignmentX
y: AnnotationTextAlignmentY
model_config = ConfigDict(protected_namespaces=())