10 lines
226 B
Kotlin
10 lines
226 B
Kotlin
package net.halfbinary.scavengerhuntapi.model.domain
|
|
|
|
import net.halfbinary.scavengerhuntapi.model.ItemId
|
|
import java.util.*
|
|
|
|
data class Item(
|
|
val id: ItemId = UUID.randomUUID(),
|
|
val name: String,
|
|
val points: Int
|
|
) |