Files
Francescos.Recipes.World/Francesco.Recipes.World/Models/BackendModels/Ingredient/Ingredient.cs
T
Francesco D'Amico 41f41ce3fb Fixed errors SA1516
2025-03-24 09:27:13 +01:00

17 lines
617 B
C#

namespace Francesco.Recipes.World.Models.BackendModels.Ingredient
{
using Francesco.Recipes.World.Models.BackendModels.IngredientShoppingList;
using Francesco.Recipes.World.Models.BackendModels.RecipeIngredient;
public class Ingredient
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public virtual ICollection<RecipeIngredient> RecipeIngredients { get; set; } = new List<RecipeIngredient>();
public virtual ICollection<IngredientsShoppingList> IngredientShoppingLists { get; set; } = new List<IngredientsShoppingList>();
}
}