jellyfin-server/MediaBrowser.Model/Channels/ChannelInfo.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2014-05-05 00:46:52 +00:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Channels
2014-05-05 00:46:52 +00:00
{
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; }
/// <summary>
/// Represents the maximum number of records the channel allows retrieving at a time
/// </summary>
public int? MaxPageSize { get; set; }
2014-05-05 00:46:52 +00:00
public ChannelInfo()
{
MediaTypes = new List<ChannelMediaType>();
ContentTypes = new List<ChannelMediaContentType>();
}
}
}