AURatingsDictionary.cs 604 B

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