Files
kittycad.py/kittycad/models/annotation_line_end_options.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

13 lines
233 B
Python

from pydantic import BaseModel
from ..models.annotation_line_end import AnnotationLineEnd
class AnnotationLineEndOptions(BaseModel):
"""Options for annotation text"""
end: AnnotationLineEnd
start: AnnotationLineEnd