jellyfin-server/MediaBrowser.Providers/Tmdb/Models/Collections/CollectionResult.cs

16 lines
461 B
C#
Raw Normal View History

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; }
}
}