mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-24 23:07:44 +01:00
15 lines
287 B
Python
15 lines
287 B
Python
"""The Tessie integration models."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from .coordinator import TessieStateUpdateCoordinator
|
|
|
|
|
|
@dataclass
|
|
class TessieData:
|
|
"""Data for the Tessie integration."""
|
|
|
|
vehicles: list[TessieStateUpdateCoordinator]
|