1
0
mirror of https://github.com/home-assistant/core.git synced 2025-10-09 19:59:30 +00:00
Files
core/homeassistant/components/yalexs_ble/models.py
2024-03-08 10:35:45 -05:00

17 lines
289 B
Python

"""The yalexs_ble integration models."""
from __future__ import annotations
from dataclasses import dataclass
from yalexs_ble import PushLock
@dataclass
class YaleXSBLEData:
"""Data for the yale xs ble integration."""
title: str
lock: PushLock
always_connected: bool