11 lines
232 B
C#
11 lines
232 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Providers.Tmdb.Models.General
|
|
{
|
|
public class Images
|
|
{
|
|
public List<Backdrop> Backdrops { get; set; }
|
|
public List<Poster> Posters { get; set; }
|
|
}
|
|
}
|