mirror of
https://github.com/home-assistant/core.git
synced 2026-09-24 23:41:48 -05:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
15 lines
253 B
Python
15 lines
253 B
Python
"""The yalexs_ble integration models."""
|
|
|
|
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
|