namespace MediaBrowser.Model.LiveTv { /// /// Class ChannelQuery. /// public class ChannelQuery { /// /// Gets or sets the type of the channel. /// /// The type of the channel. public ChannelType? ChannelType { get; set; } /// /// Gets or sets the user identifier. /// /// The user identifier. public string UserId { get; set; } /// /// Skips over a given number of items within the results. Use for paging. /// /// The start index. public int? StartIndex { get; set; } /// /// The maximum number of items to return /// /// The limit. public int? Limit { get; set; } } }