mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			439 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			439 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.MediaEncoding
 | 
						|
{
 | 
						|
    public class ImageEncodingOptions
 | 
						|
    {
 | 
						|
        public string InputPath { get; set; }
 | 
						|
 | 
						|
        public int? Width { get; set; }
 | 
						|
 | 
						|
        public int? Height { get; set; }
 | 
						|
 | 
						|
        public int? MaxWidth { get; set; }
 | 
						|
 | 
						|
        public int? MaxHeight { get; set; }
 | 
						|
 | 
						|
        public int? Quality { get; set; }
 | 
						|
 | 
						|
        public string Format { get; set; }
 | 
						|
    }
 | 
						|
}
 |