mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 11:07:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			388 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			388 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    public interface ISupportsPlaceHolders
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets a value indicating whether this instance is place holder.
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if this instance is place holder; otherwise, <c>false</c>.</value>
 | 
						|
        bool IsPlaceHolder { get; }
 | 
						|
    }
 | 
						|
}
 |