using System; using System.Collections.Generic; namespace administration.Models.HelloFresh; public partial class Ingredient { public int Id { get; set; } public string NameOwnedIngredients { get; set; } = null!; public int UserId { get; set; } }