using System.Threading.Tasks; namespace API.Interfaces.Services { public interface IMetadataService { /// /// Recalculates metadata for all entities in a library. /// /// /// Task RefreshMetadata(int libraryId, bool forceUpdate = false); /// /// Performs a forced refresh of metatdata just for a series and it's nested entities /// /// /// Task RefreshMetadataForSeries(int libraryId, int seriesId, bool forceUpdate = false); } }