mirror of
https://github.com/home-assistant/core.git
synced 2026-05-28 19:26:11 +01:00
17 lines
381 B
Python
17 lines
381 B
Python
"""Models for permissions."""
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
import attr
|
|
|
|
if TYPE_CHECKING:
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
|
|
@attr.s(slots=True)
|
|
class PermissionLookup:
|
|
"""Class to hold data for permission lookups."""
|
|
|
|
entity_registry: er.EntityRegistry = attr.ib()
|
|
device_registry: dr.DeviceRegistry = attr.ib()
|