Files
DailyMeals/MealPlan.Api/DTOs/Recipe/RecipeMacroRecalcResultDto.cs
Piotr Kus f15bb7a916 * Extended functionalities
* Added different UIs
2026-06-24 21:43:40 +02:00

11 lines
228 B
C#

namespace MealPlan.Api.DTOs.Recipe;
public class RecipeMacroRecalcResultDto
{
public int RecipesProcessed { get; init; }
public int RecipesUpdated { get; init; }
public int UnlinkedIngredientRows { get; init; }
}