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

10 lines
194 B
C#
Raw Normal View History

2020-05-30 23:23:09 -07:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class ContentRating
{
2019-08-18 05:44:13 -07:00
public string Iso_3166_1 { get; set; }
2020-06-15 14:43:52 -07:00
2019-08-18 05:44:13 -07:00
public string Rating { get; set; }
}
}