Last files for merge

This commit is contained in:
Francesco D'Amico
2025-03-19 16:33:40 +01:00
parent b9d0bf2170
commit 02533e9bfb
10 changed files with 41 additions and 42 deletions
@@ -6,9 +6,9 @@
public class RecipeIngredient
{
public Guid Id { get; set; }
public virtual Recipe Recipe { get; set; } = new();
public virtual Ingredient Ingredient { get; set; } = new();
public virtual Unit Unit { get; set; } = new();
public virtual Recipe Recipe { get; set; } = new ();
public virtual Ingredient Ingredient { get; set; } = new ();
public virtual Unit Unit { get; set; } = new ();
public int Quantity { get; set; }
}
}