mirror of
https://github.com/home-assistant/core.git
synced 2025-07-01 10:27:11 +00:00
15 lines
240 B
Python
15 lines
240 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
|