using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
    public class ChannelInfo
    {
        /// 
        /// Gets the home page URL.
        /// 
        /// The home page URL.
        public string HomePageUrl { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance can search.
        /// 
        /// true if this instance can search; otherwise, false.
        public bool CanSearch { get; set; }
        public List MediaTypes { get; set; }
        public List ContentTypes { get; set; }
        public ChannelInfo()
        {
            MediaTypes = new List();
            ContentTypes = new List();
        }
    }
}