using Postall.Infra.Dtos; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Postall.Domain.Services.Contracts { public interface IYouTubeServiceChannel { Task> GetUserChannelVideosAsync(int maxResults = 10); Task> GetChannelVideosAsync(string channelId, int maxResults = 10); Task SaveVideoForUserAsync(string videoId); Task RemoveVideoForUserAsync(string videoId); } }