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

12 lines
296 B
C#
Raw Normal View History

using System.Collections.Generic;
using MediaBrowser.Providers.Tmdb.Models.General;
namespace MediaBrowser.Providers.Tmdb.Models.Collections
{
public class CollectionImages
{
2019-08-18 12:44:13 +00:00
public List<Backdrop> Backdrops { get; set; }
public List<Poster> Posters { get; set; }
}
}