mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00
17 lines
279 B
Python
17 lines
279 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
|
|
serial: str
|
|
model: str
|