CreatedBy.cs 225 B

123456789
  1. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
  2. {
  3. public class CreatedBy
  4. {
  5. public int Id { get; set; }
  6. public string Name { get; set; }
  7. public string Profile_Path { get; set; }
  8. }
  9. }