irt-service/app/models/target.py
2021-10-30 07:15:49 +00:00

8 lines
141 B
Python

from pydantic import BaseModel
from typing import Optional
class Target(BaseModel):
theta: float
value: float
result: Optional[float]