// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.Library { using System; using System.Threading; using System.Threading.Tasks; /// /// An interface for tasks that run after the media library scan. /// public interface ILibraryPostScanTask { /// /// Runs the specified progress. /// /// The progress. /// The cancellation token. /// Task. Task Run(IProgress progress, CancellationToken cancellationToken); } }