2022-08-10 20:08:02 +00:00
|
|
|
"""The yalexs_ble integration models."""
|
2024-03-08 15:35:45 +00:00
|
|
|
|
2022-08-10 20:08:02 +00:00
|
|
|
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
|
2023-05-18 15:48:04 +00:00
|
|
|
always_connected: bool
|