```interface PropertyContainer { val property:...
# announcements
s
Copy code
interface PropertyContainer {
    val property: PropertyValueObject

    val propertyId: PropertyId?
        get() =
            when (propertyId != null) {
                true -> propertyId
                false -> property.propertyId
            }
}