From df83adbb71af569468ec58645b3e52d8c4e6778b Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 31 May 2014 11:13:07 -0400 Subject: rename channel query objects --- MediaBrowser.Model/LiveTv/ChannelQuery.cs | 51 ------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 MediaBrowser.Model/LiveTv/ChannelQuery.cs (limited to 'MediaBrowser.Model/LiveTv/ChannelQuery.cs') diff --git a/MediaBrowser.Model/LiveTv/ChannelQuery.cs b/MediaBrowser.Model/LiveTv/ChannelQuery.cs deleted file mode 100644 index 6d986d337..000000000 --- a/MediaBrowser.Model/LiveTv/ChannelQuery.cs +++ /dev/null @@ -1,51 +0,0 @@ - -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 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; } - - /// - /// Gets or sets a value indicating whether this instance is liked. - /// - /// null if [is liked] contains no value, true if [is liked]; otherwise, false. - public bool? IsLiked { get; set; } - - /// - /// Gets or sets a value indicating whether this instance is disliked. - /// - /// null if [is disliked] contains no value, true if [is disliked]; otherwise, false. - public bool? IsDisliked { 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; } - } -} -- cgit v1.2.3