mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
14 lines
377 B
C#
14 lines
377 B
C#
|
using MediaBrowser.Controller.Entities;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Library
|
|||
|
{
|
|||
|
public interface IMetadataFileSaver : IMetadataSaver
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets the save path.
|
|||
|
/// </summary>
|
|||
|
/// <param name="item">The item.</param>
|
|||
|
/// <returns>System.String.</returns>
|
|||
|
string GetSavePath(IHasMetadata item);
|
|||
|
}
|
|||
|
}
|