remove more reliance on ActiveService

This commit is contained in:
Luke Pulverenti
2015-03-12 11:51:48 -04:00
parent 028a0a857a
commit e62b663ae0
11 changed files with 50 additions and 107 deletions

View File

@@ -10,12 +10,6 @@ namespace MediaBrowser.Model.LiveTv
/// <value>The services.</value>
public List<LiveTvServiceInfo> Services { get; set; }
/// <summary>
/// Gets or sets the name of the active service.
/// </summary>
/// <value>The name of the active service.</value>
public string ActiveServiceName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is enabled.
/// </summary>
@@ -28,18 +22,6 @@ namespace MediaBrowser.Model.LiveTv
/// <value>The enabled users.</value>
public List<string> EnabledUsers { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
public LiveTvServiceStatus Status { get; set; }
/// <summary>
/// Gets or sets the status message.
/// </summary>
/// <value>The status message.</value>
public string StatusMessage { get; set; }
public LiveTvInfo()
{
Services = new List<LiveTvServiceInfo>();

View File

@@ -3,6 +3,5 @@
public class LiveTvOptions
{
public int? GuideDays { get; set; }
public string ActiveService { get; set; }
}
}