mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Added more API's for getting Keyword Results and Movie Collections
This commit is contained in:
parent
09144aa080
commit
dc570d2e2c
10 changed files with 171 additions and 42 deletions
|
@ -8,6 +8,7 @@ namespace Ombi.Core.Models.Search.V2
|
|||
public class MovieFullInfoViewModel : SearchViewModel
|
||||
{
|
||||
public bool Adult { get; set; }
|
||||
public CollectionsViewModel BelongsToCollection { get; set; }
|
||||
public string BackdropPath { get; set; }
|
||||
public string OriginalLanguage { get; set; }
|
||||
public int Budget { get; set; }
|
||||
|
@ -41,6 +42,13 @@ namespace Ombi.Core.Models.Search.V2
|
|||
public ExternalIds ExternalIds { get; set; }
|
||||
}
|
||||
|
||||
public class CollectionsViewModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string PosterPath { get; set; }
|
||||
public string BackdropPath { get; set; }
|
||||
}
|
||||
public class ExternalIds
|
||||
{
|
||||
public string ImdbId { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue