yeah ``` sealed class Base { interface...
# announcements
r
yeah
Copy code
sealed class Base {
        interface Common {
            val id: String
        }
        data class Child(private val common: Common, val other: String) : Base(), Common by common
        data class OtherChild(private val common: Common, val another: Int) : Base(), Common by common
    }