mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-09-29 15:31:04 -04:00
12 lines
296 B
C#
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; }
|
|
}
|
|
}
|