|
|
@ -27,6 +27,7 @@ namespace NzbDrone.Api.Movie
|
|
|
|
public MovieStatusType Status { get; set; }
|
|
|
|
public MovieStatusType Status { get; set; }
|
|
|
|
public string Overview { get; set; }
|
|
|
|
public string Overview { get; set; }
|
|
|
|
public DateTime? InCinemas { get; set; }
|
|
|
|
public DateTime? InCinemas { get; set; }
|
|
|
|
|
|
|
|
public DateTime? PhysicalRelease { get; set; }
|
|
|
|
public List<MediaCover> Images { get; set; }
|
|
|
|
public List<MediaCover> Images { get; set; }
|
|
|
|
public string Website { get; set; }
|
|
|
|
public string Website { get; set; }
|
|
|
|
public bool Downloaded { get; set; }
|
|
|
|
public bool Downloaded { get; set; }
|
|
|
@ -89,7 +90,8 @@ namespace NzbDrone.Api.Movie
|
|
|
|
//AlternateTitles
|
|
|
|
//AlternateTitles
|
|
|
|
SortTitle = model.SortTitle,
|
|
|
|
SortTitle = model.SortTitle,
|
|
|
|
InCinemas = model.InCinemas,
|
|
|
|
InCinemas = model.InCinemas,
|
|
|
|
|
|
|
|
PhysicalRelease = model.PhysicalRelease,
|
|
|
|
|
|
|
|
|
|
|
|
Downloaded = model.MovieFile.Value != null,
|
|
|
|
Downloaded = model.MovieFile.Value != null,
|
|
|
|
//TotalEpisodeCount
|
|
|
|
//TotalEpisodeCount
|
|
|
|
//EpisodeCount
|
|
|
|
//EpisodeCount
|
|
|
@ -140,6 +142,7 @@ namespace NzbDrone.Api.Movie
|
|
|
|
//AlternateTitles
|
|
|
|
//AlternateTitles
|
|
|
|
SortTitle = resource.SortTitle,
|
|
|
|
SortTitle = resource.SortTitle,
|
|
|
|
InCinemas = resource.InCinemas,
|
|
|
|
InCinemas = resource.InCinemas,
|
|
|
|
|
|
|
|
PhysicalRelease = resource.PhysicalRelease,
|
|
|
|
//TotalEpisodeCount
|
|
|
|
//TotalEpisodeCount
|
|
|
|
//EpisodeCount
|
|
|
|
//EpisodeCount
|
|
|
|
//EpisodeFileCount
|
|
|
|
//EpisodeFileCount
|
|
|
|