Implements photo review endpoint

This commit is contained in:
2026-05-14 23:09:08 -05:00
parent bc1bcf6e8d
commit 67fb801812
3 changed files with 28 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
package net.halfbinary.scavengerhuntapi.model.request
import jakarta.validation.constraints.NotBlank
import net.halfbinary.scavengerhuntapi.model.PhotoStatus
data class ReviewPhotoRequest(
@field:NotBlank(message = "Status must not be blank")
val status: PhotoStatus
)