mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
11 lines
280 B
C#
11 lines
280 B
C#
namespace MediaBrowser.Providers.Tmdb.Models.Movies
|
|
{
|
|
public class BelongsToCollection
|
|
{
|
|
public int id { get; set; }
|
|
public string name { get; set; }
|
|
public string poster_path { get; set; }
|
|
public string backdrop_path { get; set; }
|
|
}
|
|
}
|