feat(recipe/dto): creado output DTO RecipeSummary para recetas resumidas

parent b80e1e11
package com.example.apprecetas.recipe.infrastructure.controller.dto.output;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class RecipeSummaryOutputDto {
private String name;
private String description;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment