diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-25 21:53:48 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-25 21:53:48 -0500 |
| commit | 6a9ed5f87f2d9ec0e07d860d36666f0fea2e1e45 (patch) | |
| tree | 0f4ef99808685a2b97e27304c33d49a965162757 /MediaBrowser.Controller/LiveTv/RecordingInfo.cs | |
| parent | 3b4c35583808a84af2ee636a00fea8355e645b2e (diff) | |
added recording status enum
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/RecordingInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/RecordingInfo.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs index 0e4be52e3a..f61bd9e785 100644 --- a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs +++ b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs @@ -1,4 +1,5 @@ -using System; +using MediaBrowser.Model.LiveTv; +using System; using System.Collections.Generic; namespace MediaBrowser.Controller.LiveTv @@ -47,9 +48,10 @@ namespace MediaBrowser.Controller.LiveTv public DateTime EndDate { get; set; } /// <summary> - /// Status of the recording. + /// Gets or sets the status. /// </summary> - public string Status { get; set; } //TODO: Enum for status?? Difference NextPvr,Argus,... + /// <value>The status.</value> + public RecordingStatus Status { get; set; } /// <summary> /// Gets or sets a value indicating whether this instance is recurring. |
