mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 18:38:17 +00: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]
|