snowe
04/04/2018, 10:34 PMinterface PropertyContainer {
val property: PropertyValueObject
val propertyId: PropertyId?
get() =
when (propertyId != null) {
true -> propertyId
false -> property.propertyId
}
}