14 lines
239 B
Python
14 lines
239 B
Python
|
"""Models for laundrify platform."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from typing import TypedDict
|
||
|
|
||
|
|
||
|
class LaundrifyDevice(TypedDict):
|
||
|
"""laundrify Power Plug."""
|
||
|
|
||
|
_id: str
|
||
|
name: str
|
||
|
status: str
|
||
|
firmwareVersion: str
|