Added lyrics to scores

This commit is contained in:
marc
2025-04-05 15:10:56 +02:00
parent d5eb40e300
commit 211a1fbb05
7 changed files with 89 additions and 9 deletions

View File

@@ -22,3 +22,18 @@ class RenderError:
pos=str(self.pos),
error=self.error,
)
@dataclasses.dataclass
class LyricsParagraph:
lines: list[str]
@dataclasses.dataclass
class LyricsColumn:
paragraphs: list[LyricsParagraph]
@dataclasses.dataclass
class LyricsText:
columns: list[LyricsColumn]