Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/Collections/Part.cs

18 lines
364 B
C#
Raw Normal View History

#pragma warning disable CS1591
2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Collections
{
public class Part
{
2019-08-18 14:44:13 +02:00
public string Title { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public int Id { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Release_Date { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Poster_Path { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Backdrop_Path { get; set; }
}
}