Radarr/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/MovieResource.cs

44 lines
1.6 KiB
C#
Raw Normal View History

2020-05-10 01:49:09 +00:00
using System;
using System.Collections.Generic;
2020-05-10 01:49:09 +00:00
namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
{
2019-12-22 22:08:53 +00:00
public class MovieResource
{
2020-05-10 01:49:09 +00:00
public int TmdbId { get; set; }
public string ImdbId { get; set; }
public string Overview { get; set; }
public string Title { get; set; }
2020-05-26 01:55:10 +00:00
public string OriginalTitle { get; set; }
2020-05-10 01:49:09 +00:00
public string TitleSlug { get; set; }
2020-10-13 04:14:15 +00:00
2022-11-20 18:27:45 +00:00
// Depricated but left in place until cache fills new object (MovieRatings)
2020-10-13 04:14:15 +00:00
public List<RatingItem> Ratings { get; set; }
public RatingResource MovieRatings { get; set; }
2020-05-10 01:49:09 +00:00
public int? Runtime { get; set; }
public List<ImageResource> Images { get; set; }
public List<string> Genres { get; set; }
public int Year { get; set; }
public DateTime? Premier { get; set; }
public DateTime? InCinema { get; set; }
public DateTime? PhysicalRelease { get; set; }
public DateTime? DigitalRelease { get; set; }
public List<AlternativeTitleResource> AlternativeTitles { get; set; }
public List<TranslationResource> Translations { get; set; }
public Credits Credits { get; set; }
public string Studio { get; set; }
public string YoutubeTrailerId { get; set; }
public List<CertificationResource> Certifications { get; set; }
public string Status { get; set; }
public CollectionResource Collection { get; set; }
public string OriginalLanguage { get; set; }
public string Homepage { get; set; }
public List<RecommendationResource> Recommendations { get; set; }
2022-03-20 15:55:47 +00:00
public float? Popularity { get; set; }
2019-12-22 22:08:53 +00:00
}
2019-12-22 21:24:10 +00:00
}