Files
DailyMeals/MealPlan.Api/DTOs/Recipe/RecipeListItemDto.cs
2026-06-04 06:24:56 +02:00

12 lines
362 B
C#

namespace MealPlan.Api.DTOs.Recipe;
/// <summary>Lightweight recipe projection used by list/grid views.</summary>
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; }
}