Files
IoT-Systems/agent/src/domain/parking.py

10 lines
134 B
Python
Raw Normal View History

2026-02-26 12:11:07 +02:00
from dataclasses import dataclass
from agent.src.domain.gps import Gps
@dataclass
class Parking:
empty_count: int
gps: Gps