mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
Add GPL modules
This commit is contained in:
19
MediaBrowser.Controller/Library/IMetadataFileSaver.cs
Normal file
19
MediaBrowser.Controller/Library/IMetadataFileSaver.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user