jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/ContentRatings.cs

10 lines
196 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-05-30 23:23:09 -07:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class ContentRatings
{
2019-08-18 05:44:13 -07:00
public List<ContentRating> Results { get; set; }
}
}