mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			962 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			962 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Enum MetadataFields.
 | 
						|
    /// </summary>
 | 
						|
    public enum MetadataField
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// The cast.
 | 
						|
        /// </summary>
 | 
						|
        Cast,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The genres.
 | 
						|
        /// </summary>
 | 
						|
        Genres,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The production locations.
 | 
						|
        /// </summary>
 | 
						|
        ProductionLocations,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The studios.
 | 
						|
        /// </summary>
 | 
						|
        Studios,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The tags.
 | 
						|
        /// </summary>
 | 
						|
        Tags,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The name.
 | 
						|
        /// </summary>
 | 
						|
        Name,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The overview.
 | 
						|
        /// </summary>
 | 
						|
        Overview,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The runtime.
 | 
						|
        /// </summary>
 | 
						|
        Runtime,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The official rating.
 | 
						|
        /// </summary>
 | 
						|
        OfficialRating
 | 
						|
    }
 | 
						|
}
 |