jellyfin/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionResult.cs
2019-08-18 14:50:26 +02:00

16 lines
461 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Providers.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; }
}
}