2014-09-28 20:49:43 +00:00
|
|
|
|
using MediaBrowser.Model.Channels;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
2014-06-06 17:14:02 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
|
{
|
|
|
|
|
public class InternalAllChannelMediaQuery
|
|
|
|
|
{
|
|
|
|
|
public string UserId { get; set; }
|
2014-09-28 20:49:43 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the content types.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The content types.</value>
|
|
|
|
|
public ChannelMediaContentType[] ContentTypes { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the extra types.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The extra types.</value>
|
|
|
|
|
public ExtraType[] ExtraTypes { get; set; }
|
|
|
|
|
public TrailerType[] TrailerTypes { get; set; }
|
|
|
|
|
|
|
|
|
|
public InternalAllChannelMediaQuery()
|
|
|
|
|
{
|
|
|
|
|
ContentTypes = new ChannelMediaContentType[] { };
|
|
|
|
|
ExtraTypes = new ExtraType[] { };
|
|
|
|
|
TrailerTypes = new TrailerType[] { };
|
|
|
|
|
}
|
2014-06-06 17:14:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|