mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 03:28:28 -07:00
52 lines
No EOL
1.7 KiB
C#
52 lines
No EOL
1.7 KiB
C#
using System.Collections.Generic;
|
|
using Ombi.Core.Models.Requests;
|
|
|
|
namespace Ombi.Core.Models.Search
|
|
{
|
|
public class SearchTvShowViewModel : SearchViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string SeriesName { get; set; }
|
|
public List<string> Aliases { get; set; }
|
|
public string Banner { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public string Status { get; set; }
|
|
public string FirstAired { get; set; }
|
|
public string Network { get; set; }
|
|
public string NetworkId { get; set; }
|
|
public string Runtime { get; set; }
|
|
public List<string> Genre { get; set; }
|
|
public string Overview { get; set; }
|
|
public int LastUpdated { get; set; }
|
|
public string AirsDayOfWeek { get; set; }
|
|
public string AirsTime { get; set; }
|
|
public string Rating { get; set; }
|
|
public string ImdbId { get; set; }
|
|
public int SiteRating { get; set; }
|
|
|
|
/// <summary>
|
|
/// This is used from the Trakt API
|
|
/// </summary>
|
|
/// <value>
|
|
/// The trailer.
|
|
/// </value>
|
|
public string Trailer { get; set; }
|
|
/// <summary>
|
|
/// This is used from the Trakt API
|
|
/// </summary>
|
|
/// <value>
|
|
/// The trailer.
|
|
/// </value>
|
|
public string Homepage { get; set; }
|
|
|
|
public List<SeasonRequestModel> SeasonRequests { get; set; } = new List<SeasonRequestModel>();
|
|
|
|
/// <summary>
|
|
/// If we are requesting the entire series
|
|
/// </summary>
|
|
public bool RequestAll { get; set; }
|
|
|
|
public bool FirstSeason { get; set; }
|
|
public bool LatestSeason { get; set; }
|
|
}
|
|
} |