mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-12 13:22:17 +01:00
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; }
|
|
}
|
|
}
|