using System; using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Providers { public interface IHasChangeMonitor { /// /// Determines whether the specified item has changed. /// /// The item. /// The date. /// true if the specified item has changed; otherwise, false. bool HasChanged(IHasMetadata item, DateTime date); } }