mirror of
https://github.com/Rhinemann/IoT-Systems.git
synced 2026-03-14 20:50:39 +02:00
8 lines
162 B
Python
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
|