Initial commit
This commit is contained in:
11
MealPlan.Api/DTOs/Recipe/RecipeListItemDto.cs
Normal file
11
MealPlan.Api/DTOs/Recipe/RecipeListItemDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user