namespace administration.Models.HelloFresh.DTO; public class IngredientItemDto { public string Name { get; set; } = ""; public string? Quantity { get; set; } public string? Image { get; set; } public bool Owned { get; set; } }