Initial Migration
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
namespace Francesco.Recipes.World.Models.BackendModels.Recipe
|
||||
{
|
||||
using Francesco.Recipes.World.Models.BackendModels.Category;
|
||||
using Francesco.Recipes.World.Models.BackendModels.Favorit;
|
||||
using Francesco.Recipes.World.Models.BackendModels.File;
|
||||
using Francesco.Recipes.World.Models.BackendModels.Instruction;
|
||||
using Francesco.Recipes.World.Models.BackendModels.RecipeIngredient;
|
||||
|
||||
@@ -8,11 +11,16 @@
|
||||
public Guid Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Difficulty { get; set; }
|
||||
public Difficulty Difficulty { get; set; }
|
||||
public int Servings { get; set; }
|
||||
public TimeSpan PreparationTime { get; set; }
|
||||
public TimeSpan CookingTime { get; set; }
|
||||
public virtual ICollection <RecipeIngredient> RecipeIngredients { get; set; } = new List<RecipeIngredient>();
|
||||
public virtual ICollection <Instruction> Instructions { get; set; } = new List<Instruction>();
|
||||
public bool IsFavorite { get; set; }
|
||||
public virtual ICollection<RecipeIngredient> RecipeIngredients { get; set; } = new List<RecipeIngredient>();
|
||||
public virtual ICollection<Instruction> Instructions { get; set; } = new List<Instruction>();
|
||||
public virtual ICollection<MediaFileImageRecipe> Images { get; set; } = new List<MediaFileImageRecipe>();
|
||||
public virtual ICollection<MediaFileVideoRecipe> Videos { get; set; } = new List<MediaFileVideoRecipe>();
|
||||
public virtual Category Category { get; set; } = new();
|
||||
public virtual Favorit Favorit { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user