in progress: associate ingredients to recipe on save

This commit is contained in:
Mikayla Dobson
2023-02-19 12:04:46 -06:00
parent 47360518ce
commit 63d0049450
8 changed files with 116 additions and 15 deletions

View File

@@ -44,6 +44,11 @@ export interface IIngredient extends HasHistory {
createdbyid: string | number
}
export interface RecipeIngredient extends Partial<IIngredient> {
unit: string
quantity: string | number
}
export interface ICollection extends HasHistory, CanDeactivate {
name: string
ismaincollection: boolean