jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/CollectionImages.cs

12 lines
312 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-05-30 23:23:09 -07:00
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
2020-05-30 23:23:09 -07:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
{
public class CollectionImages
{
2019-08-18 05:44:13 -07:00
public List<Backdrop> Backdrops { get; set; }
public List<Poster> Posters { get; set; }
}
}