Adds stubs for some basic Team CRUD

This commit is contained in:
2026-01-08 22:14:28 -06:00
parent 7dce3e38b4
commit 3a53769421
6 changed files with 92 additions and 0 deletions

View File

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