using MealPlan.Api.DTOs.Recipe;
namespace MealPlan.Api.Services;
public interface IRecipeExcelService
{
/// Generates a blank .xlsx template with Recipes, Ingredients, and Steps sheets.
byte[] GenerateTemplate();
/// Parses an uploaded workbook and creates recipes in the database.
Task ImportAsync(Stream fileStream, CancellationToken ct = default);
}