12 lines
286 B
Kotlin
12 lines
286 B
Kotlin
package net.halfbinary.scavengerhuntapi.model.domain
|
|
|
|
import net.halfbinary.scavengerhuntapi.model.HuntId
|
|
import net.halfbinary.scavengerhuntapi.model.ItemId
|
|
import java.util.*
|
|
|
|
data class HuntItem(
|
|
val id: UUID = UUID.randomUUID(),
|
|
val huntId: HuntId,
|
|
val itemId: ItemId
|
|
)
|