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

24 lines
661 B
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; }
}
}