Files
scavengerhunt-api/src/main/kotlin/net/halfbinary/scavengerhuntapi/model/domain/Team.kt

10 lines
209 B
Kotlin

package net.halfbinary.scavengerhuntapi.model.domain
import net.halfbinary.scavengerhuntapi.model.TeamId
import java.util.UUID
data class Team(
val id: TeamId = UUID.randomUUID(),
val name: String
)