28 lines
829 B
C#
28 lines
829 B
C#
|
using MediaBrowser.Controller.Entities;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Library
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface IMetadataSaver
|
|||
|
/// </summary>
|
|||
|
public interface IMetadataSaver
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Supportses the specified item.
|
|||
|
/// </summary>
|
|||
|
/// <param name="item">The item.</param>
|
|||
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
|||
|
bool Supports(BaseItem item);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Saves the specified item.
|
|||
|
/// </summary>
|
|||
|
/// <param name="item">The item.</param>
|
|||
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|||
|
/// <returns>Task.</returns>
|
|||
|
Task Save(BaseItem item, CancellationToken cancellationToken);
|
|||
|
}
|
|||
|
}
|