Adds Team members list endpoint and Hunt details update endpoint

This commit is contained in:
2026-05-18 17:10:52 -05:00
parent 4049dbbdaa
commit 74391f8a46
7 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package net.halfbinary.scavengerhuntapi.model.response
import net.halfbinary.scavengerhuntapi.model.HunterId
data class HunterSummaryResponse(
val id: HunterId,
val name: String
)