aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/StillImages.cs
blob: 59ab18b7bfdf9ca1942e4a43706760fbdc765951 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma warning disable CS1591

using System.Collections.Generic;

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
    public class StillImages
    {
        public List<Still> Stills { get; set; }
    }
}