Implements team item status endpoint

This commit is contained in:
2026-05-14 23:35:53 -05:00
parent 67fb801812
commit dbd988a573
8 changed files with 43 additions and 13 deletions

View File

@@ -2,11 +2,8 @@ package net.halfbinary.scavengerhuntapi.model.response
import net.halfbinary.scavengerhuntapi.model.FoundStatus
import net.halfbinary.scavengerhuntapi.model.ItemId
import java.time.LocalDateTime
data class TeamItemResponse(
val id: ItemId,
val hunterName: String?,
val itemFoundStatus: FoundStatus,
val itemStatusChangeDateTime: LocalDateTime,
val itemFoundStatus: FoundStatus
)