package net.halfbinary.scavengerhuntapi.model.domain import net.halfbinary.scavengerhuntapi.model.HuntId import net.halfbinary.scavengerhuntapi.model.TeamHuntId import net.halfbinary.scavengerhuntapi.model.TeamId import java.util.UUID data class TeamHunt( val id: TeamHuntId = TeamHuntId.randomUUID(), val teamId: TeamId, val huntId: HuntId )