#pragma warning disable CS1591 using System; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Querying; namespace MediaBrowser.Model.Channels { public class ChannelQuery { /// /// Gets or sets the fields to return within the items, in addition to basic information. /// /// The fields. public ItemFields[]? Fields { get; set; } public bool? EnableImages { get; set; } public int? ImageTypeLimit { get; set; } public ImageType[]? EnableImageTypes { get; set; } /// /// Gets or sets the user identifier. /// /// The user identifier. public Guid UserId { get; set; } /// /// Gets or sets the start index. Use for paging. /// /// The start index. public int? StartIndex { get; set; } /// /// Gets or sets the maximum number of items to return. /// /// The limit. public int? Limit { get; set; } /// /// Gets or sets a value indicating whether [supports latest items]. /// /// true if [supports latest items]; otherwise, false. public bool? SupportsLatestItems { get; set; } public bool? SupportsMediaDeletion { get; set; } /// /// Gets or sets a value indicating whether this instance is favorite. /// /// null if [is favorite] contains no value, true if [is favorite]; otherwise, false. public bool? IsFavorite { get; set; } public bool? IsRecordingsFolder { get; set; } public bool RefreshLatestChannelItems { get; set; } } }