Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/ContentRatings.cs

12 lines
228 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class ContentRatings
{
2019-08-18 14:44:13 +02:00
public List<ContentRating> Results { get; set; }
}
}