``` class CategoryEntry(title: String, url: String...
# tornadofx
r
Copy code
class CategoryEntry(title: String, url: String, val types: String)  : Entry(title, url) {
    override fun toString(): String {
        return super.toString()+"- $types"
    }
}

class CategoryEntryModel(val categoryentry: CategoryEntry) : ViewModel() {
    val types = bind { SimpleStringProperty(categoryentry.types) }
}