This commit is contained in:
2019-06-05 19:45:49 +08:00
parent b91240149b
commit 6925e309eb
3 changed files with 6 additions and 2 deletions

View File

@@ -5,5 +5,5 @@ import kotlinx.serialization.Serializable
@Serializable
data class SauceNaoAnswer(
val header: Header,
val results: List<Result>
val results: List<Result> = emptyList()
)