mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
19 lines
461 B
C#
19 lines
461 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(BaseItem item);
|
|||
|
}
|
|||
|
|
|||
|
public interface IConfigurableProvider
|
|||
|
{
|
|||
|
bool IsEnabled { get; }
|
|||
|
}
|
|||
|
}
|