namespace MealPlan.Api.DTOs.Recipe;
/// Summary returned after an Excel import operation.
public class RecipeImportResultDto
{
public int CreatedCount { get; set; }
public int SkippedCount { get; set; }
public List Errors { get; set; } = new();
public List CreatedRecipeIds { get; set; } = new();
}