mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Lots of work on the movie details page !wip
This commit is contained in:
parent
cdec1f4f27
commit
947fe8308d
13 changed files with 197 additions and 23 deletions
|
@ -30,7 +30,7 @@ namespace Ombi.Core.Models.Search.V2
|
|||
public string Homepage { get; set; }
|
||||
public int RootPathOverride { get; set; }
|
||||
public string Status { get; set; }
|
||||
public List<VideoResults> Videos { get; set; }
|
||||
public Videos Videos { get; set; }
|
||||
public CreditsViewModel Credits { get; set; }
|
||||
public int QualityOverride { get; set; }
|
||||
public override RequestType Type => RequestType.Movie;
|
||||
|
@ -54,7 +54,12 @@ namespace Ombi.Core.Models.Search.V2
|
|||
public string origin_country { get; set; }
|
||||
}
|
||||
|
||||
public class VideoResults
|
||||
public class Videos
|
||||
{
|
||||
public VideoResultsDetails[] results { get; set; }
|
||||
}
|
||||
|
||||
public class VideoResultsDetails
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string iso_639_1 { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue