mirror of
https://github.com/home-assistant/core.git
synced 2025-05-18 12:59:14 +00:00
15 lines
261 B
Python
15 lines
261 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
|