15 lines
326 B
Python
15 lines
326 B
Python
|
"""Models for the mystrom integration."""
|
||
|
from dataclasses import dataclass
|
||
|
from typing import Any
|
||
|
|
||
|
from pymystrom.bulb import MyStromBulb
|
||
|
from pymystrom.switch import MyStromSwitch
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class MyStromData:
|
||
|
"""Data class for mystrom device data."""
|
||
|
|
||
|
device: MyStromSwitch | MyStromBulb
|
||
|
info: dict[str, Any]
|