namespace MealPlan.Api.DTOs.Recipe; /// Lightweight recipe projection used by list/grid views. public class RecipeListItemDto { public int Id { get; set; } public string Name { get; set; } = string.Empty; public int MealCategory { get; set; } public int? Calories { get; set; } public int? PrepTimeMinutes { get; set; } }