``` var id by property<Int>() fun idPro...
# tornadofx
r
Copy code
var id by property<Int>()
    fun idProperty() = getProperty(Person::id)

    var firstName by property<String>()
    fun firstNameProperty() = getProperty(Person::firstName)