namespace MealPlanner.Models; public class ShoppingItem { public string Name { get; set; } = ""; public decimal? TotalAmount { get; set; } public string? Unit { get; set; } public string? Category { get; set; } public bool IsChecked { get; set; } }