mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03: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; }
|
||
|
|
}
|
||
|
|
}
|