Initial Migration

This commit is contained in:
Francesco D'Amico
2025-03-05 17:29:37 +01:00
parent b06e1b27dd
commit 6affee7b8c
14 changed files with 113 additions and 12 deletions
@@ -5,7 +5,8 @@
public class RecipeIngredient
{
public Guid Id { get; set; }
public virtual Recipe Recipe { get; set; } = new ();
public virtual Ingredient Ingredient { get; set; } = new ();
public Guid RecipeId { get; set; }
public virtual Recipe Recipe { get; set; } = new();
public virtual Ingredient Ingredient { get; set; } = new();
}
}