package net.halfbinary.scavengerhuntapi.model.domain import net.halfbinary.scavengerhuntapi.model.ItemId import java.util.* data class Item( val id: ItemId = UUID.randomUUID(), val name: String, val points: Int )