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