mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05: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; }
 | 
						|
    }
 | 
						|
} |