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

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