Keywords.cs 181 B

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