10 lines
285 B
C#
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; }
|
|
}
|