mirror of
https://github.com/home-assistant/core.git
synced 2025-06-30 01:47:08 +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]
|