You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
869 B
31 lines
869 B
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public class ChannelInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets the home page URL.
|
|
/// </summary>
|
|
/// <value>The home page URL.</value>
|
|
public string HomePageUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this instance can search.
|
|
/// </summary>
|
|
/// <value><c>true</c> if this instance can search; otherwise, <c>false</c>.</value>
|
|
public bool CanSearch { get; set; }
|
|
|
|
public List<ChannelMediaType> MediaTypes { get; set; }
|
|
|
|
public List<ChannelMediaContentType> ContentTypes { get; set; }
|
|
|
|
public ChannelInfo()
|
|
{
|
|
MediaTypes = new List<ChannelMediaType>();
|
|
ContentTypes = new List<ChannelMediaContentType>();
|
|
}
|
|
}
|
|
|
|
}
|