Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Images.cs

11 lines
240 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Images
{
2019-08-18 14:44:13 +02:00
public List<Backdrop> Backdrops { get; set; }
public List<Poster> Posters { get; set; }
}
}