blob: 414abdd59de36ff65c403d174156338e8c715527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System.Collections.Generic;
namespace MediaBrowser.Controller.Localization
{
/// <summary>
/// Class GBRatingsDictionary
/// </summary>
public class GBRatingsDictionary : Dictionary<string, int>
{
/// <summary>
/// Initializes a new instance of the <see cref="GBRatingsDictionary" /> class.
/// </summary>
public GBRatingsDictionary()
{
Add("GB-U", 1);
Add("GB-PG", 5);
Add("GB-12", 6);
Add("GB-12A", 7);
Add("GB-15", 8);
Add("GB-18", 9);
Add("GB-R18", 15);
}
}
}
|