MVCPostall/Postall.Domain/Services/Contracts/IChannelYoutubeService.cs
2025-03-04 19:06:01 -03:00

18 lines
457 B
C#

using BaseDomain.Results;
using Postall.Domain.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Postall.Domain.Services.Contracts
{
public interface IChannelYoutubeService
{
Task<Result<List<ChannelResponse>>> SearchChannelsAsync(string query, int maxResults = 5);
Task<Result<ChannelResponse>> GetChannelDetailsAsync(string channelId);
}
}