feat: add serializable data models with FlexibleStringSerializer for number coercion

This commit is contained in:
2026-07-08 17:02:31 +02:00
parent c931ec7143
commit a24297f821
9 changed files with 291 additions and 0 deletions
@@ -0,0 +1,9 @@
package ch.parano.myice.models
import kotlinx.serialization.Serializable
@Serializable
data class Convocation(
val available: List<Player> = emptyList(),
val staff: List<Staff> = emptyList(),
)