8 lines
171 B
C#
8 lines
171 B
C#
using Seasoned.Backend.DTOs;
|
|
|
|
namespace Seasoned.Backend.Services;
|
|
|
|
public interface IRecipeService
|
|
{
|
|
Task<RecipeResponseDto> ParseRecipeImageAsync(IFormFile image);
|
|
} |