irt-service/app/models/target.py
2022-02-10 20:29:50 -05:00

9 lines
148 B
Python

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