10 lines
152 B
Python
10 lines
152 B
Python
from __future__ import annotations
|
|
|
|
from .data_model import DataModel
|
|
|
|
|
|
class AngleData(DataModel):
|
|
high: float
|
|
eye_level: float
|
|
low: float
|