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

10 lines
285 B
C#

namespace MealPlan.Api.DTOs.Recipe;
/// <summary>Category metadata with the number of active recipes it contains.</summary>
public class CategoryCountDto
{
public int Category { get; set; }
public string Name { get; set; } = string.Empty;
public int Count { get; set; }
}