2014-05-23 23:58:28 +00:00
|
|
|
|
|
2014-05-19 19:51:56 +00:00
|
|
|
|
namespace MediaBrowser.Model.Channels
|
2014-05-05 00:46:52 +00:00
|
|
|
|
{
|
|
|
|
|
public class ChannelInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2014-05-23 23:58:28 +00:00
|
|
|
|
/// Gets or sets the name.
|
2014-05-05 00:46:52 +00:00
|
|
|
|
/// </summary>
|
2014-05-23 23:58:28 +00:00
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
2014-05-05 00:46:52 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-05-23 23:58:28 +00:00
|
|
|
|
/// Gets or sets the identifier.
|
2014-05-05 00:46:52 +00:00
|
|
|
|
/// </summary>
|
2014-05-23 23:58:28 +00:00
|
|
|
|
/// <value>The identifier.</value>
|
|
|
|
|
public string Id { get; set; }
|
2014-05-05 00:46:52 +00:00
|
|
|
|
|
2014-05-19 19:51:56 +00:00
|
|
|
|
/// <summary>
|
2014-05-23 23:58:28 +00:00
|
|
|
|
/// Gets or sets the home page URL.
|
2014-05-19 19:51:56 +00:00
|
|
|
|
/// </summary>
|
2014-05-23 23:58:28 +00:00
|
|
|
|
/// <value>The home page URL.</value>
|
|
|
|
|
public string HomePageUrl { get; set; }
|
2014-05-19 19:51:56 +00:00
|
|
|
|
|
2014-05-23 23:58:28 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the features.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The features.</value>
|
|
|
|
|
public ChannelFeatures Features { get; set; }
|
2014-05-05 00:46:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|