diff --git a/src/main/java/ntnu/idatt2016/v233/SmartMat/dto/request/RecipeRequest.java b/src/main/java/ntnu/idatt2016/v233/SmartMat/dto/request/RecipeRequest.java new file mode 100644 index 0000000000000000000000000000000000000000..fcc9451ce21396ce2fe067869d2d19f93fc30e1b --- /dev/null +++ b/src/main/java/ntnu/idatt2016/v233/SmartMat/dto/request/RecipeRequest.java @@ -0,0 +1,29 @@ +package ntnu.idatt2016.v233.SmartMat.dto.request; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; + +/** + * This class represents a recipe request + */ +@Data +@Builder +@AllArgsConstructor +public class RecipeRequest { + /** + * The unique id of the recipe + */ + private long id; + + /** + * The name of the recipe + */ + private String recipeName; + + /** + * The description of the recipe + */ + private String recipeDescription; + +}