summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/models/recipe.dart5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/models/recipe.dart b/lib/models/recipe.dart
index 1100862..2ca1bb2 100755
--- a/lib/models/recipe.dart
+++ b/lib/models/recipe.dart
@@ -1,10 +1,15 @@
class Recipe {
final String name;
+
final String image;
+
final String desc;
+
final String description;
+
final String ingredients;
+
final String tutorial;
Recipe({this.name,this.desc,this.description,this.image,this.ingredients,this.tutorial});