Can we do something link this ```data class CovidC...
# ktor
d
Can we do something link this
Copy code
data class CovidCountryCase(
    @SerialName("date")
    val date: Long? = null,
    @SerialName("state")
    val state: String? = null,
    @SerialName("positive")
    val positive: Long? = null
) : ParentJSON()

@Serializable
open class ParentJSON
where we make the ParentJSON serializable and use it as a param at the above function ?