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