ContentRatings.cs 188 B

123456789
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Providers.Tmdb.Models.TV
  3. {
  4. public class ContentRatings
  5. {
  6. public List<ContentRating> Results { get; set; }
  7. }
  8. }