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