#nullable disable #pragma warning disable CS1591 using System; using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.Querying { public class UpcomingEpisodesQuery { public UpcomingEpisodesQuery() { EnableImageTypes = Array.Empty(); } /// /// Gets or sets the user id. /// /// The user id. public string UserId { get; set; } /// /// Gets or sets the parent identifier. /// /// The parent identifier. public string ParentId { 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 the fields to return within the items, in addition to basic information. /// /// The fields. public ItemFields[] Fields { get; set; } /// /// Gets or sets a value indicating whether [enable images]. /// /// null if [enable images] contains no value, true if [enable images]; otherwise, false. public bool? EnableImages { get; set; } /// /// Gets or sets the image type limit. /// /// The image type limit. public int? ImageTypeLimit { get; set; } /// /// Gets or sets the enable image types. /// /// The enable image types. public ImageType[] EnableImageTypes { get; set; } } }