Quiztable/src/main/kotlin/data/Player.kt

7 lines
85 B
Kotlin

package data
class Player(
val name: String,
val color: ColorData? = null
)