jellyfin-server/MediaBrowser.Model/Channels/ChannelQuery.cs

61 lines
1.7 KiB
C#
Raw Normal View History

namespace MediaBrowser.Model.Channels
2014-03-18 01:45:41 +00: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 19:32:41 +00: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; }
2014-06-07 19:46:24 +00:00
/// <summary>
/// Gets or sets the content types.
/// </summary>
/// <value>The content types.</value>
public ChannelMediaContentType[] ContentTypes { get; set; }
2014-06-02 19:32:41 +00:00
public AllChannelMediaQuery()
{
ChannelIds = new string[] { };
2014-06-07 19:46:24 +00:00
ContentTypes = new ChannelMediaContentType[] { };
2014-06-02 19:32:41 +00:00
}
}
2014-03-18 01:45:41 +00:00
}