Files
Seasoned/Seasoned.Backend/Services/IRecipeService.cs
2026-03-12 20:17:25 +00:00

9 lines
241 B
C#

using Seasoned.Backend.DTOs;
namespace Seasoned.Backend.Services;
public interface IRecipeService
{
Task<RecipeResponseDto> ParseRecipeImageAsync(IFormFile image);
Task<ChefConsultResponseDto> ConsultChefAsync(string userPrompt);
}