using System; using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Controller.Library { /// /// Interface IPeoplePrescanTask /// public interface IPeoplePrescanTask { /// /// Runs the specified progress. /// /// The progress. /// The cancellation token. /// Task. Task Run(IProgress progress, CancellationToken cancellationToken); } }