diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-25 16:53:06 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-25 16:53:06 -0500 |
| commit | 3b4c35583808a84af2ee636a00fea8355e645b2e (patch) | |
| tree | 4c78b12660e5ab1fde16d64f3e7cb0c2314b677f /MediaBrowser.Controller | |
| parent | a641059c571d9596baa814a01a85546e3a4b5b50 (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/RecordingInfo.cs | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs index f35b6d5c6..0e4be52e3 100644 --- a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs +++ b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs @@ -21,6 +21,12 @@ namespace MediaBrowser.Controller.LiveTv public string ChannelName { get; set; } /// <summary> + /// Gets or sets the program identifier. + /// </summary> + /// <value>The program identifier.</value> + public string ProgramId { get; set; } + + /// <summary> /// Name of the recording. /// </summary> public string Name { get; set; } @@ -46,14 +52,10 @@ namespace MediaBrowser.Controller.LiveTv public string Status { get; set; } //TODO: Enum for status?? Difference NextPvr,Argus,... /// <summary> - /// Quality of the Recording. - /// </summary> - public string Quality { get; set; } // TODO: Enum for quality?? Difference NextPvr,Argus,... - - /// <summary> - /// Recurring recording? + /// Gets or sets a value indicating whether this instance is recurring. /// </summary> - public bool Recurring { get; set; } + /// <value><c>true</c> if this instance is recurring; otherwise, <c>false</c>.</value> + public bool IsRecurring { get; set; } /// <summary> /// Parent recurring. |
