Adds stubs for item endpoints

This commit is contained in:
2026-05-12 10:11:20 -05:00
parent fd754a7ee7
commit aff7cd1e28
3 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package net.halfbinary.scavengerhuntapi.model.request
data class ItemRequest(
val name: String,
val points: Int
)