mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
12 lines
164 B
Python
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
|