18 lines
282 B
Python
18 lines
282 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
from pysmartthings import SmartThings
|
||
|
|
||
|
from .api_extension.SoundbarDevice import SoundbarDevice
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class DeviceConfig:
|
||
|
config: dict
|
||
|
device: SoundbarDevice
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class SoundbarConfig:
|
||
|
api: SmartThings
|
||
|
devices: dict
|