Yimaru-BackEnd/internal/domain/recommendation.go

12 lines
255 B
Go

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