24 lines
507 B
C#
24 lines
507 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
|
|
{
|
|
public class CollectionResult
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Overview { get; set; }
|
|
|
|
public string Poster_Path { get; set; }
|
|
|
|
public string Backdrop_Path { get; set; }
|
|
|
|
public List<Part> Parts { get; set; }
|
|
|
|
public CollectionImages Images { get; set; }
|
|
}
|
|
}
|