using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Jellyfin.Plugin.SRFPlay.Services.Interfaces; /// /// Interface for refreshing content from SRF API. /// public interface IContentRefreshService { /// /// Refreshes latest content from SRF API using Play v3. /// /// The cancellation token. /// List of URNs for new content. Task> RefreshLatestContentAsync(CancellationToken cancellationToken); /// /// Refreshes trending content from SRF API using Play v3. /// /// The cancellation token. /// List of URNs for trending content. Task> RefreshTrendingContentAsync(CancellationToken cancellationToken); }