Recently I have split my KMP project into fullstack project and a core library (that is mostly consists of common data classes) and found out that I need to use an annotation from JVM library on one of the data classes that is now defined in a common module.
It doesn't seems possible to use an annotation from Java library in Kotlin common code.
What are the possible ways to resolve such issue preferrebly avoiding declaring such data class via expect and then repeating its implementation in actual platforms but with different annotations?