You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.FanartTv/Models/MovieResult.cs

18 lines
575 B

namespace Ombi.Api.FanartTv.Models
{
public class MovieResult
{
public string name { get; set; }
public string tmdb_id { get; set; }
public string imdb_id { get; set; }
public Content[] hdmovieclearart { get; set; }
public Content[] hdmovielogo { get; set; }
public Content[] moviebackground { get; set; }
public Content[] movieposter { get; set; }
public Content[] moviedisc { get; set; }
public Content[] moviebanner { get; set; }
public Content[] moviethumb { get; set; }
}
}