mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
18 lines
635 B
C#
18 lines
635 B
C#
using MediaBrowser.Controller.Entities;
|
|
using System;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public interface IHasChangeMonitor
|
|
{
|
|
/// <summary>
|
|
/// Determines whether the specified item has changed.
|
|
/// </summary>
|
|
/// <param name="item">The item.</param>
|
|
/// <param name="directoryService">The directory service.</param>
|
|
/// <param name="date">The date.</param>
|
|
/// <returns><c>true</c> if the specified item has changed; otherwise, <c>false</c>.</returns>
|
|
bool HasChanged(IHasMetadata item, IDirectoryService directoryService, DateTime date);
|
|
}
|
|
}
|