aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/StillImages.cs
blob: 23af4b697ac620388015b4903fef5e80a3f97a28 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

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