jellyfin-server/MediaBrowser.Providers/Tmdb/Models/TV/ContentRatings.cs

10 lines
188 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace MediaBrowser.Providers.Tmdb.Models.TV
{
public class ContentRatings
{
2019-08-18 12:44:13 +00:00
public List<ContentRating> Results { get; set; }
}
}