mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
16 lines
485 B
C#
16 lines
485 B
C#
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="date">The date.</param>
|
|
/// <returns><c>true</c> if the specified item has changed; otherwise, <c>false</c>.</returns>
|
|
bool HasChanged(IHasMetadata item, DateTime date);
|
|
}
|
|
}
|