generated from ricardo/MVCLogin
18 lines
457 B
C#
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);
|
|
}
|
|
}
|