jellyfin/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionImages.cs
2019-08-18 14:50:26 +02:00

12 lines
296 B
C#

using System.Collections.Generic;
using MediaBrowser.Providers.Tmdb.Models.General;
namespace MediaBrowser.Providers.Tmdb.Models.Collections
{
public class CollectionImages
{
public List<Backdrop> Backdrops { get; set; }
public List<Poster> Posters { get; set; }
}
}