aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/ContentRating.cs
blob: aef4e2863228ef3533d42c051b37118a5008a672 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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; }
    }
}