Refactor TatoebaSentence class to just Sentence

This commit is contained in:
Marvin Elsen 2024-10-14 19:17:33 +02:00
parent 8db4c3879f
commit dbc482bee4
Signed by: marvinelsen
GPG Key ID: 820672408CC318C2
2 changed files with 6 additions and 3 deletions

View File

@ -0,0 +1,6 @@
package com.marvinelsen.willow.domain
data class Sentence(
val traditional: String,
val simplified: String,
)

View File

@ -1,3 +0,0 @@
package com.marvinelsen.willow.tatoeba
data class TatoebaSentence(val traditional: String)