Delete unnecessary property ShoppingList
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
using Francesco.Recipes.World.Models.BackendModels.Recipe;
|
||||
using Francesco.Recipes.World.Models.BackendModels.Shoppinglist;
|
||||
|
||||
namespace Francesco.Recipes.World.Models
|
||||
{
|
||||
public class ShoppingListDetailsViewModel
|
||||
{
|
||||
public ShoppingList ShoppingList { get; set; } = new ShoppingList();
|
||||
|
||||
public int RecipeCount { get; set; }
|
||||
|
||||
public List<Recipe> RecipesInAnyShoppingList { get; set; } = new List<Recipe>();
|
||||
|
||||
public Dictionary<Guid, Guid> RecipeIngredientToShoppingListMap { get; set; } = new Dictionary<Guid, Guid>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user