package com.recipeapp.recipe.dto; import java.util.UUID; public record RecipeSummaryResponse( UUID id, String name, short serves, short cookTimeMin, String effort, String heroImagePreview ) {}