fluidsonic / fluid-json

A JSON library written in pure Kotlin
Apache License 2.0
31 stars 7 forks source link

fix codec generation for properties whose type references a generic type of the value class #35

Open fluidsonic opened 5 years ago

fluidsonic commented 5 years ago
@JSON
class ClientCommand<out Result : Any>(
    val resultClass: KClass<out Result>
)

@JSON
class ClientCommandRequest<out Result : Any>(
    val command: ClientCommand<Result>
)