using MediaBrowser.Model.Channels;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Channels
{
    public class InternalAllChannelMediaQuery
    {
        public string UserId { 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 InternalAllChannelMediaQuery()
        {
            ContentTypes = new ChannelMediaContentType[] { };
            ExtraTypes = new ExtraType[] { };
            TrailerTypes = new TrailerType[] { };
        }
    }
}