mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
12 lines
226 B
C#
12 lines
226 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
|
|
{
|
|
public class ContentRating
|
|
{
|
|
public string Iso_3166_1 { get; set; }
|
|
|
|
public string Rating { get; set; }
|
|
}
|
|
}
|