mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 08:26:41 +01:00
Co-authored-by: Tao Jiang <tao.jiang@linkplay.com> Co-authored-by: Erik Montnemery <erik@montnemery.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Paulus Schoutsen <balloob@gmail.com> Co-authored-by: Joostlek <joostlek@outlook.com>
14 lines
338 B
Python
14 lines
338 B
Python
"""Runtime models for the WiiM integration."""
|
|
|
|
from dataclasses import dataclass, field
|
|
|
|
from wiim.controller import WiimController
|
|
|
|
|
|
@dataclass
|
|
class WiimData:
|
|
"""Runtime data for the WiiM integration shared across platforms."""
|
|
|
|
controller: WiimController
|
|
entity_id_to_udn_map: dict[str, str] = field(default_factory=dict)
|