12 lines
320 B
C#
12 lines
320 B
C#
namespace MediaBrowser.Providers.Tmdb.Models.Collections
|
|
{
|
|
public class Part
|
|
{
|
|
public string title { get; set; }
|
|
public int id { get; set; }
|
|
public string release_date { get; set; }
|
|
public string poster_path { get; set; }
|
|
public string backdrop_path { get; set; }
|
|
}
|
|
}
|