mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 01:32:55 -07:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RequestPlex.Api.Models
|
|
{
|
|
public class MovieResult
|
|
{
|
|
public bool adult { get; set; }
|
|
public string backdrop_path { get; set; }
|
|
public List<object> genre_ids { get; set; }
|
|
public int id { get; set; }
|
|
public string original_language { get; set; }
|
|
public string original_title { get; set; }
|
|
public string overview { get; set; }
|
|
public string release_date { get; set; }
|
|
public string poster_path { get; set; }
|
|
public double popularity { get; set; }
|
|
public string title { get; set; }
|
|
public bool video { get; set; }
|
|
public double vote_average { get; set; }
|
|
public int vote_count { get; set; }
|
|
}
|
|
|
|
public class MovieSearch
|
|
{
|
|
public int page { get; set; }
|
|
public List<MovieResult> results { get; set; }
|
|
public int total_pages { get; set; }
|
|
public int total_results { get; set; }
|
|
}
|
|
}
|