feat(RecipeOutputDto): creado Recipe output DTO

parent 4e7afd7d
package com.example.apprecetas.recipe.infrastructure.controller.dto;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class RecipeOutputDto {
private Long id;
private String name;
private String description;
private String picture;
}
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