mirror of
https://github.com/home-assistant/core.git
synced 2025-05-20 05:49:15 +00:00
15 lines
244 B
Python
15 lines
244 B
Python
"""The roomba integration models."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from roombapy import Roomba
|
|
|
|
|
|
@dataclass
|
|
class RoombaData:
|
|
"""Data for the roomba integration."""
|
|
|
|
roomba: Roomba
|
|
blid: str
|