namespace MealPlanner.Models; public class RecipeIngredient { public Guid Id { get; set; } public Guid RecipeId { get; set; } public string Name { get; set; } = ""; public decimal? Amount { get; set; } public string? Unit { get; set; } public string? Category { get; set; } public Recipe Recipe { get; set; } = null!; }