using BaseDomain.Results; using Postall.Domain.Dtos; using System.Collections.Generic; using System.Threading.Tasks; namespace Postall.Domain.Services.Contracts { public interface IVideoYoutubeService { Task> GetVideoDetailsAsync(string videoId); Task>> GetChannelVideosAsync(string channelId, int maxResults = 50); Task>> SearchVideosAsync(string query, int maxResults = 10); } }