1
0
mirror of https://github.com/Rhinemann/IoT-Systems.git synced 2026-03-15 21:00:39 +02:00
IoT-Systems/edge/app/entities/processed_agent_data.py
2024-02-12 18:21:08 +02:00

8 lines
162 B
Python

from pydantic import BaseModel
from app.entities.agent_data import AgentData
class ProcessedAgentData(BaseModel):
road_state: str
agent_data: AgentData