new: extract Records feature module

This commit is contained in:
2026-07-08 14:44:55 +02:00
parent 0151d92b6a
commit 6a10c0c510
33 changed files with 138 additions and 81 deletions
@@ -0,0 +1,11 @@
package bzh.ajaury.chombev.core.model
data class Record(
val id: Int,
val index: Int,
val emoji: String,
val title: Phrase,
val audioResourcePath: String,
val subtitleResourcePath: String,
val translationSubtitleResourcePath: String? = null,
)