mirror of
https://github.com/home-assistant/core.git
synced 2025-06-03 12:47:06 +00:00
13 lines
269 B
Python
13 lines
269 B
Python
"""The unifiprotect integration models."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class ProtectRequiredKeysMixin:
|
|
"""Mixin for required keys."""
|
|
|
|
ufp_required_field: str | None = None
|
|
ufp_value: str | None = None
|