``` open class Entity<T> { open var stuf...
# announcements
s
Copy code
open class Entity<T> {
    open var stuff: T? = null
}

class EntityUplink : Entity<ActualType>() {
    override var stuff: ActualType? = null
}