14 lines
292 B
Python
14 lines
292 B
Python
|
"""The Tessie integration models."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from dataclasses import dataclass
|
||
|
|
||
|
from .coordinator import TessieStateUpdateCoordinator
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class TessieVehicle:
|
||
|
"""Data for the Tessie integration."""
|
||
|
|
||
|
state_coordinator: TessieStateUpdateCoordinator
|