mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03: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; }
|
||
|
|
}
|
||
|
|
}
|