using MediaBrowser.Model.Sync; using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Controller.Sync { public interface IRequiresDynamicAccess { /// /// Gets the file information. /// /// The remote path. /// The target. /// The cancellation token. /// Task<SendFileResult>. Task GetFileInfo(string remotePath, SyncTarget target, CancellationToken cancellationToken); } }