mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-26 03:04:09 +01:00
14 lines
345 B
Python
14 lines
345 B
Python
"""Models for the SolarEdge integration."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from homeassistant.components.sensor import SensorEntityDescription
|
|
|
|
|
|
@dataclass
|
|
class SolarEdgeSensorEntityDescription(SensorEntityDescription):
|
|
"""Sensor entity description for SolarEdge."""
|
|
|
|
json_key: str | None = None
|