jellyfin/MediaBrowser.Model/Querying/NextUpQuery.cs

98 lines
3.1 KiB
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Entities;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Querying
{
public class NextUpQuery
{
public NextUpQuery()
{
EnableImageTypes = Array.Empty<ImageType>();
EnableTotalRecordCount = true;
DisableFirstEpisode = false;
NextUpDateCutoff = DateTime.MinValue;
EnableResumable = false;
EnableRewatching = false;
}
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
public Guid UserId { get; set; }
/// <summary>
/// Gets or sets the parent identifier.
/// </summary>
/// <value>The parent identifier.</value>
public Guid? ParentId { get; set; }
2019-01-07 18:27:46 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the series id.
/// </summary>
/// <value>The series id.</value>
2022-08-14 07:03:48 -04:00
public Guid? SeriesId { get; set; }
2019-01-07 18:27:46 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the start index. Use for paging.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The start index.</value>
public int? StartIndex { get; set; }
/// <summary>
/// Gets or sets the maximum number of items to return.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The limit.</value>
public int? Limit { get; set; }
/// <summary>
/// gets or sets the fields to return within the items, in addition to basic information.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The fields.</value>
public ItemFields[] Fields { get; set; }
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets a value indicating whether [enable images].
/// </summary>
/// <value><c>null</c> if [enable images] contains no value, <c>true</c> if [enable images]; otherwise, <c>false</c>.</value>
public bool? EnableImages { get; set; }
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the image type limit.
/// </summary>
/// <value>The image type limit.</value>
public int? ImageTypeLimit { get; set; }
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the enable image types.
/// </summary>
/// <value>The enable image types.</value>
public ImageType[] EnableImageTypes { get; set; }
public bool EnableTotalRecordCount { get; set; }
/// <summary>
/// Gets or sets a value indicating whether do disable sending first episode as next up.
/// </summary>
public bool DisableFirstEpisode { get; set; }
2021-04-15 14:44:21 -04:00
/// <summary>
/// Gets or sets a value indicating the oldest date for a show to appear in Next Up.
/// </summary>
public DateTime NextUpDateCutoff { get; set; }
2022-02-20 12:05:57 -05:00
/// <summary>
/// Gets or sets a value indicating whether to include resumable episodes as next up.
/// </summary>
public bool EnableResumable { get; set; }
2022-02-20 12:05:57 -05:00
/// <summary>
/// Gets or sets a value indicating whether getting rewatching next up list.
/// </summary>
public bool EnableRewatching { get; set; }
2018-12-27 18:27:57 -05:00
}
}