You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
604 B
24 lines
604 B
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);
|
|
}
|
|
}
|
|
}
|