mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			490 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			490 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Since BaseItem and DTOBaseItem both have ProviderIds, this interface helps avoid code repition by using extension methods
 | 
						|
    /// </summary>
 | 
						|
    public interface IHasProviderIds
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the provider ids.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The provider ids.</value>
 | 
						|
        Dictionary<string, string> ProviderIds { get; set; }
 | 
						|
    }
 | 
						|
}
 |