|
|
@ -12,7 +12,7 @@ namespace MediaBrowser.Controller.Entities.Movies
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Class Movie
|
|
|
|
/// Class Movie
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
public class Movie : Video, IHasCriticRating, IHasSoundtracks, IHasBudget, IHasKeywords, IHasTrailers, IHasThemeMedia, IHasTaglines, IHasTags, IHasPreferredMetadataLanguage
|
|
|
|
public class Movie : Video, IHasCriticRating, IHasSoundtracks, IHasBudget, IHasKeywords, IHasTrailers, IHasThemeMedia, IHasTaglines, IHasTags, IHasPreferredMetadataLanguage, IHasAwards, IHasMetascore
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public List<Guid> SpecialFeatureIds { get; set; }
|
|
|
|
public List<Guid> SpecialFeatureIds { get; set; }
|
|
|
|
|
|
|
|
|
|
|
@ -20,7 +20,7 @@ namespace MediaBrowser.Controller.Entities.Movies
|
|
|
|
|
|
|
|
|
|
|
|
public List<Guid> ThemeSongIds { get; set; }
|
|
|
|
public List<Guid> ThemeSongIds { get; set; }
|
|
|
|
public List<Guid> ThemeVideoIds { get; set; }
|
|
|
|
public List<Guid> ThemeVideoIds { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the preferred metadata country code.
|
|
|
|
/// Gets or sets the preferred metadata country code.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
@ -42,6 +42,10 @@ namespace MediaBrowser.Controller.Entities.Movies
|
|
|
|
Keywords = new List<string>();
|
|
|
|
Keywords = new List<string>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string AwardSummary { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public float? Metascore { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
|
|
|
public List<string> Keywords { get; set; }
|
|
|
|
public List<string> Keywords { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|