Browse Source

Add notes property to Ingredient Model

Tatiana Inama 6 năm trước cách đây
mục cha
commit
76d74e1276
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      recipes/src/types/recipes.ts

+ 1 - 0
recipes/src/types/recipes.ts

@@ -3,6 +3,7 @@ export interface Ingredient {
   quantity: number,
   unit: string,
   _original: string,
+  notes?: string,
   suggestions?: Suggestion[],
 }