mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			479 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			479 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Enum VideoType.
 | 
						|
    /// </summary>
 | 
						|
    public enum VideoType
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// The video file.
 | 
						|
        /// </summary>
 | 
						|
        VideoFile,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The iso.
 | 
						|
        /// </summary>
 | 
						|
        Iso,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The DVD.
 | 
						|
        /// </summary>
 | 
						|
        Dvd,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The blu ray.
 | 
						|
        /// </summary>
 | 
						|
        BluRay
 | 
						|
    }
 | 
						|
}
 |