using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
public class LiveTvInfo
{
///
/// Gets or sets the services.
///
/// The services.
public List Services { get; set; }
///
/// Gets or sets the name of the active service.
///
/// The name of the active service.
public string ActiveServiceName { get; set; }
///
/// Gets or sets a value indicating whether this instance is enabled.
///
/// true if this instance is enabled; otherwise, false.
public bool IsEnabled { get; set; }
///
/// Gets or sets the enabled users.
///
/// The enabled users.
public List EnabledUsers { get; set; }
///
/// Gets or sets the status.
///
/// The status.
public LiveTvServiceStatus Status { get; set; }
///
/// Gets or sets the status message.
///
/// The status message.
public string StatusMessage { get; set; }
public LiveTvInfo()
{
Services = new List();
EnabledUsers = new List();
}
}
}