jellyfin/MediaBrowser.Model/Channels/ChannelQuery.cs

60 lines
1.9 KiB
C#
Raw Normal View History

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
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Model.Channels
{
public class ChannelQuery
{
/// <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>
2021-10-26 07:56:30 -04:00
public ItemFields[]? Fields { get; set; }
2018-12-27 18:27:57 -05:00
public bool? EnableImages { get; set; }
2018-12-27 18:27:57 -05:00
public int? ImageTypeLimit { get; set; }
2021-10-26 07:56:30 -04:00
public ImageType[]? EnableImageTypes { get; set; }
2019-01-07 18:27:46 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public Guid UserId { get; set; }
/// <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 a value indicating whether [supports latest items].
/// </summary>
/// <value><c>true</c> if [supports latest items]; otherwise, <c>false</c>.</value>
public bool? SupportsLatestItems { get; set; }
public bool? SupportsMediaDeletion { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is favorite.
/// </summary>
/// <value><c>null</c> if [is favorite] contains no value, <c>true</c> if [is favorite]; otherwise, <c>false</c>.</value>
public bool? IsFavorite { get; set; }
2018-12-27 18:27:57 -05:00
public bool? IsRecordingsFolder { get; set; }
2018-12-27 18:27:57 -05:00
public bool RefreshLatestChannelItems { get; set; }
}
}