blob: 882302f103ad1d2b2fc4b5005878edf63a1ebee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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);
}
}
}
|