do not cast radiogroup to String

This commit is contained in:
tibbi 2017-03-18 17:21:54 +01:00
parent f0708c3d4d
commit 5ead8deb86

View file

@ -1,3 +1,3 @@
package com.simplemobiletools.commons.models
data class RadioItem(val id: Int, val title: String, val value: Any = id.toString())
data class RadioItem(val id: Int, val title: String, val value: Any = id)