mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			270 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			270 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Api
 | 
						|
{
 | 
						|
    public interface IHasDtoOptions : IHasItemFields
 | 
						|
    {
 | 
						|
        bool? EnableImages { get; set; }
 | 
						|
        bool? EnableUserData { get; set; }
 | 
						|
 | 
						|
        int? ImageTypeLimit { get; set; }
 | 
						|
 | 
						|
        string EnableImageTypes { get; set; }
 | 
						|
    }
 | 
						|
}
 |