jellyfin/MediaBrowser.Providers/Tmdb/Models/TV/ContentRatings.cs
2019-08-18 14:50:26 +02:00

10 lines
188 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Providers.Tmdb.Models.TV
{
public class ContentRatings
{
public List<ContentRating> Results { get; set; }
}
}