10 lines
165 B
Python
10 lines
165 B
Python
from __future__ import annotations
|
|
|
|
from .base_data_model import BaseDataModel
|
|
|
|
|
|
class AngleData(BaseDataModel):
|
|
high: float
|
|
eye_level: float
|
|
low: float
|