mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Entities
 | |
| {
 | |
|     public interface IHasSpecialFeatures
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the special feature ids.
 | |
|         /// </summary>
 | |
|         /// <value>The special feature ids.</value>
 | |
|         IReadOnlyList<Guid> SpecialFeatureIds { get; set; }
 | |
|     }
 | |
| }
 |