mirror of
https://github.com/home-assistant/core.git
synced 2025-05-11 17:39:17 +00:00
11 lines
163 B
Python
11 lines
163 B
Python
"""Text-to-speech data models."""
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class Voice:
|
|
"""A TTS voice."""
|
|
|
|
voice_id: str
|
|
name: str
|