I wanna have an interface with serializable proper...
# serialization
z
I wanna have an interface with serializable properties, but is there no way to do it so that i dont have to override every single one in my implementation Like this
Copy code
@Serializable
internal data class ApiTrending(
    override val tabs: List<ApiBrowse.Tab<JsonElement>>
) : ApiBrowse<JsonElement>
im having an awful time trying to make this easy to use
ive got no idea how
is there no way to make the overriden field inherit the serial name at least?