Skip to content
Snippets Groups Projects
Commit 6e8e63eb authored by Stian Lyng's avatar Stian Lyng
Browse files

create dto

parent 7f928e90
No related branches found
No related tags found
No related merge requests found
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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment