Also, it would have been great if the `id` in `Ent...
# exposed
d
Also, it would have been great if the
id
in
Entity
would be
_id
or something... that way if I want to have it derived from the model's interface in our domain layer, I don't have to rename
val id: Int
to some funny name to avoid collisions... I could just do
override var id: Int get() = _id.value....