using System.Collections.Generic;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Model.Channels
{
public class AllChannelMediaQuery
{
///
/// Gets or sets the channel ids.
///
/// The channel ids.
public string[] ChannelIds { 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; }
///
/// Gets or sets the content types.
///
/// The content types.
public ChannelMediaContentType[] ContentTypes { get; set; }
///
/// Gets or sets the extra types.
///
/// The extra types.
public ExtraType[] ExtraTypes { get; set; }
public TrailerType[] TrailerTypes { get; set; }
public AllChannelMediaQuery()
{
ChannelIds = new string[] { };
ContentTypes = new ChannelMediaContentType[] { };
ExtraTypes = new ExtraType[] { };
TrailerTypes = new TrailerType[] { };
Filters = new ItemFilter[] { };
Fields = new List();
}
public ItemFilter[] Filters { get; set; }
public List Fields { get; set; }
}
}