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

40 lines
1.5 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; }
public List<RatingResource> Ratings { get; set; }
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; }
2019-12-22 22:08:53 +00:00
}
2019-12-22 21:24:10 +00:00
}