mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +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; }
|
|
}
|
|
}
|