aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/ChannelQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-31 11:13:07 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-31 11:13:07 -0400
commitdf83adbb71af569468ec58645b3e52d8c4e6778b (patch)
treec21b7143df258740b2d06a4bad00bf08587ea02e /MediaBrowser.Model/LiveTv/ChannelQuery.cs
parent704571605b6626794695add070071bf4b89dd94c (diff)
rename channel query objects
Diffstat (limited to 'MediaBrowser.Model/LiveTv/ChannelQuery.cs')
-rw-r--r--MediaBrowser.Model/LiveTv/ChannelQuery.cs51
1 files changed, 0 insertions, 51 deletions
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
-{
- /// <summary>
- /// Class ChannelQuery.
- /// </summary>
- public class ChannelQuery
- {
- /// <summary>
- /// Gets or sets the type of the channel.
- /// </summary>
- /// <value>The type of the channel.</value>
- public ChannelType? ChannelType { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether this instance is favorite.
- /// </summary>
- /// <value><c>null</c> if [is favorite] contains no value, <c>true</c> if [is favorite]; otherwise, <c>false</c>.</value>
- public bool? IsFavorite { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether this instance is liked.
- /// </summary>
- /// <value><c>null</c> if [is liked] contains no value, <c>true</c> if [is liked]; otherwise, <c>false</c>.</value>
- public bool? IsLiked { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether this instance is disliked.
- /// </summary>
- /// <value><c>null</c> if [is disliked] contains no value, <c>true</c> if [is disliked]; otherwise, <c>false</c>.</value>
- public bool? IsDisliked { 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; }
- }
-}