#nullable disable
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.Querying
{
public class EpisodeQuery
{
///
/// Gets or sets the user identifier.
///
/// The user identifier.
public string UserId { get; set; }
///
/// Gets or sets the season identifier.
///
/// The season identifier.
public string SeasonId { get; set; }
///
/// Gets or sets the series identifier.
///
/// The series identifier.
public string SeriesId { get; set; }
///
/// Gets or sets a value indicating whether this instance is missing.
///
/// null if [is missing] contains no value, true if [is missing]; otherwise, false.
public bool? IsMissing { get; set; }
///
/// Gets or sets a value indicating whether this instance is virtual unaired.
///
/// null if [is virtual unaired] contains no value, true if [is virtual unaired]; otherwise, false.
public bool? IsVirtualUnaired { get; set; }
///
/// Gets or sets the season number.
///
/// The season number.
public int? SeasonNumber { get; set; }
///
/// Gets or sets the fields.
///
/// The fields.
public ItemFields[] Fields { get; set; }
///
/// Gets or sets the start index.
///
/// The start index.
public int? StartIndex { get; set; }
///
/// Gets or sets the limit.
///
/// The limit.
public int? Limit { get; set; }
///
/// Gets or sets the start item identifier.
///
/// The start item identifier.
public string StartItemId { get; set; }
public EpisodeQuery()
{
Fields = Array.Empty();
}
}
}