mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			604 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			604 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Localization
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class AURatingsDictionary
 | 
						|
    /// </summary>
 | 
						|
    public class AURatingsDictionary : Dictionary<string, int>
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Initializes a new instance of the <see cref="AURatingsDictionary" /> class.
 | 
						|
        /// </summary>
 | 
						|
        public AURatingsDictionary()
 | 
						|
        {
 | 
						|
            Add("AU-G", 1);
 | 
						|
            Add("AU-PG", 5);
 | 
						|
            Add("AU-M", 6);
 | 
						|
            Add("AU-M15+", 7);
 | 
						|
            Add("AU-R18+", 9);
 | 
						|
            Add("AU-X18+", 10);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |