mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
First start on replacing tv maze
This commit is contained in:
parent
cf07204b73
commit
4e0ee5fee5
15 changed files with 155 additions and 80 deletions
20
src/Ombi.TheMovieDbApi/Models/MovieDbSearchResult.cs
Normal file
20
src/Ombi.TheMovieDbApi/Models/MovieDbSearchResult.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
namespace Ombi.Api.TheMovieDb.Models
|
||||
{
|
||||
public class MovieDbSearchResult
|
||||
{
|
||||
public string PosterPath { get; set; }
|
||||
public bool Adult { get; set; }
|
||||
public string Overview { get; set; }
|
||||
public string ReleaseDate { get; set; }
|
||||
public int?[] GenreIds { get; set; }
|
||||
public int Id { get; set; }
|
||||
public string OriginalTitle { get; set; }
|
||||
public string OriginalLanguage { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string BackdropPath { get; set; }
|
||||
public float Popularity { get; set; }
|
||||
public int VoteCount { get; set; }
|
||||
public bool Video { get; set; }
|
||||
public float VoteAverage { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue