mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 09:59:20 +00:00
14 lines
247 B
Python
14 lines
247 B
Python
"""Models for Aladdin connect cover platform."""
|
|
from __future__ import annotations
|
|
|
|
from typing import TypedDict
|
|
|
|
|
|
class DoorDevice(TypedDict):
|
|
"""Aladdin door device."""
|
|
|
|
device_id: str
|
|
door_number: int
|
|
name: str
|
|
status: str
|