mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-16 19:43:01 -05:00
13 lines
313 B
C#
13 lines
313 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
|
|
{
|
|
public class CollectionImages
|
|
{
|
|
public List<Backdrop> Backdrops { get; set; }
|
|
|
|
public List<Poster> Posters { get; set; }
|
|
}
|
|
}
|