2014-05-08 16:26:20 -04:00
|
|
|
|
namespace MediaBrowser.Model.Channels
|
2014-03-17 21:45:41 -04:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
2014-06-02 15:32:41 -04:00
|
|
|
|
|
|
|
|
|
|
public class AllChannelMediaQuery
|
|
|
|
|
|
{
|
|
|
|
|
|
public string[] ChannelIds { 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; }
|
|
|
|
|
|
|
|
|
|
|
|
public AllChannelMediaQuery()
|
|
|
|
|
|
{
|
|
|
|
|
|
ChannelIds = new string[] { };
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-03-17 21:45:41 -04:00
|
|
|
|
}
|