Implements adding an item to a hunt

This commit is contained in:
2026-05-13 15:47:03 -05:00
parent 46132bb4fd
commit 30c66527b9
7 changed files with 76 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
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
)