GBRatingsDictionary.cs 630 B

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