feat(domain): extended and actualized domain models

This commit is contained in:
ITQ
2026-05-20 02:57:46 +03:00
parent 8e89fe5f7f
commit 432659500b
7 changed files with 83 additions and 0 deletions
@@ -0,0 +1,16 @@
package com.project.movienight.domain.model
import java.util.UUID
data class RecommendationContext(
val userId: UUID,
val contentType: ContentType? = null,
val mood: String? = null,
val limit: Int = 10,
)
data class RecommendationResult(
val film: Film,
val score: Double,
val reasons: List<String>,
)