1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-26 10:15:33 +01:00
Files
core/homeassistant/components/tts/models.py
T
2024-03-08 10:35:23 -05:00

12 lines
164 B
Python

"""Text-to-speech data models."""
from dataclasses import dataclass
@dataclass(frozen=True)
class Voice:
"""A TTS voice."""
voice_id: str
name: str