summaryrefslogtreecommitdiff
path: root/src/recipe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/recipe.h')
-rw-r--r--src/recipe.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/recipe.h b/src/recipe.h
index 3b6ef3e..f33c07c 100644
--- a/src/recipe.h
+++ b/src/recipe.h
@@ -47,7 +47,17 @@ struct Recipe
{
int id;
std::string title;
+ std::string description;
std::string image;
std::string instructions;
std::vector<Ingredient> ingredients;
+
+ std::string source;
+ std::string cuisine;
+ int cooktime;
+ int preptime;
+
+ double yields;
+ std::string yield_unit;
+ std::vector<std::string> tags;
};