using System.Collections.Generic;
namespace MediaBrowser.Controller.Localization
{
///
/// Class GBRatingsDictionary
///
public class GBRatingsDictionary : Dictionary
{
///
/// Initializes a new instance of the class.
///
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);
}
}
}