mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
12 lines
228 B
C#
12 lines
228 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
|
|
{
|
|
public class ContentRatings
|
|
{
|
|
public List<ContentRating> Results { get; set; }
|
|
}
|
|
}
|