Yimaru-BackEnd/internal/domain/recommendation.go

11 lines
238 B
Go

package domain
type RecommendationSuccessfulResponse struct {
Message string `json:"message"`
// RecommendedGames []VirtualGame `json:"recommended_games"`
}
type RecommendationErrorResponse struct {
Message string `json:"message"`
}