Restructured the discover code. also fixed a bug where Endgame is earning too much revenue where we could no longer store it in a int32!

This commit is contained in:
Jamie Rees 2019-05-08 16:21:15 +01:00
parent 09bf919d4d
commit 03eb92f911
20 changed files with 68 additions and 50 deletions

View file

@ -17,7 +17,7 @@ namespace Ombi.Core.Models.Search.V2
public string Overview { get; set; }
public List<ProductionCompaniesViewModel> ProductionCompanies { get; set; }
public double Popularity { get; set; }
public int Revenue { get; set; }
public float Revenue { get; set; }
public long Runtime { get; set; }
public string PosterPath { get; set; }
public DateTime? ReleaseDate { get; set; }