| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | namespace MediaBrowser.Model.Channels{    public class ChannelQuery    {        /// <summary>        /// Gets or sets the user identifier.        /// </summary>        /// <value>The user identifier.</value>        public string UserId { get; set; }        /// <summary>        /// Skips over a given number of items within the results. Use for paging.        /// </summary>        /// <value>The start index.</value>        public int? StartIndex { get; set; }        /// <summary>        /// The maximum number of items to return        /// </summary>        /// <value>The limit.</value>        public int? Limit { get; set; }    }    public class ChannelItemQuery    {        /// <summary>        /// Gets or sets the channel identifier.        /// </summary>        /// <value>The channel identifier.</value>        public string ChannelId { get; set; }        /// <summary>        /// Gets or sets the category identifier.        /// </summary>        /// <value>The category identifier.</value>        public string CategoryId { get; set; }                /// <summary>        /// Gets or sets the user identifier.        /// </summary>        /// <value>The user identifier.</value>        public string UserId { get; set; }        /// <summary>        /// Skips over a given number of items within the results. Use for paging.        /// </summary>        /// <value>The start index.</value>        public int? StartIndex { get; set; }        /// <summary>        /// The maximum number of items to return        /// </summary>        /// <value>The limit.</value>        public int? Limit { get; set; }    }}
 |