11 lines
228 B
C#
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; }
|
|
}
|