diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-04 14:10:50 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-04 14:10:50 -0400 |
| commit | 5c613f2dda979f412ffc3eca19f0a933fa2ef942 (patch) | |
| tree | 64aca87a43b2a59c1d382963e71e65b268d6b7be /MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs | |
| parent | cf87301f45bfed4210ac2a53b5b88f2c40071796 (diff) | |
update channel db
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs b/MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs index a34860c52e..03c05ec69b 100644 --- a/MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs +++ b/MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs @@ -14,9 +14,6 @@ namespace MediaBrowser.Controller.LiveTv { public class LiveTvAudioRecording : Audio, ILiveTvRecording { - public string ExternalId { get; set; } - public string ProviderImagePath { get; set; } - public string ProviderImageUrl { get; set; } [IgnoreDataMember] public string EpisodeTitle { get; set; } [IgnoreDataMember] @@ -35,13 +32,10 @@ namespace MediaBrowser.Controller.LiveTv public bool IsRepeat { get; set; } [IgnoreDataMember] public bool IsMovie { get; set; } - public bool? IsHD { get; set; } [IgnoreDataMember] public bool IsLive { get; set; } [IgnoreDataMember] public bool IsPremiere { get; set; } - public ChannelType ChannelType { get; set; } - public string ProgramId { get; set; } public ProgramAudio? Audio { get; set; } /// <summary> @@ -52,11 +46,6 @@ namespace MediaBrowser.Controller.LiveTv { var name = GetClientTypeName(); - if (!string.IsNullOrEmpty(ProgramId)) - { - return name + "-" + ProgramId; - } - return name + "-" + Name + (EpisodeTitle ?? string.Empty); } |
