diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-15 10:18:31 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-15 10:18:31 -0500 |
| commit | 98b6046f04b2732315b882cf65a1f2e3cbea65ab (patch) | |
| tree | c937c1b850e56758f2286a2beaa806decfde2918 /MediaBrowser.Model | |
| parent | ca831ae88aaefb07f98d1a337792ea4af608fed0 (diff) | |
change IsRecording filter to IsInProgress
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/RecordingInfoDto.cs | 12 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/RecordingQuery.cs | 12 |
2 files changed, 9 insertions, 15 deletions
diff --git a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs index 4d56d0ae39..ceb976689d 100644 --- a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs +++ b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs @@ -52,12 +52,6 @@ namespace MediaBrowser.Model.LiveTv public string Name { get; set; } /// <summary> - /// Gets or sets the type of the location. - /// </summary> - /// <value>The type of the location.</value> - public LocationType LocationType { get; set; } - - /// <summary> /// Gets or sets the media streams. /// </summary> /// <value>The media streams.</value> @@ -70,12 +64,6 @@ namespace MediaBrowser.Model.LiveTv public string Path { get; set; } /// <summary> - /// Gets or sets the URL. - /// </summary> - /// <value>The URL.</value> - public string Url { get; set; } - - /// <summary> /// Overview of the recording. /// </summary> public string Overview { get; set; } diff --git a/MediaBrowser.Model/LiveTv/RecordingQuery.cs b/MediaBrowser.Model/LiveTv/RecordingQuery.cs index 8f82433cc7..1fa9af49b3 100644 --- a/MediaBrowser.Model/LiveTv/RecordingQuery.cs +++ b/MediaBrowser.Model/LiveTv/RecordingQuery.cs @@ -44,10 +44,16 @@ namespace MediaBrowser.Model.LiveTv public int? Limit { get; set; } /// <summary> - /// Gets or sets a value indicating whether this instance is recording. + /// Gets or sets the status. /// </summary> - /// <value><c>null</c> if [is recording] contains no value, <c>true</c> if [is recording]; otherwise, <c>false</c>.</value> - public bool? IsRecording { get; set; } + /// <value>The status.</value> + public RecordingStatus? Status { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether this instance is in progress. + /// </summary> + /// <value><c>null</c> if [is in progress] contains no value, <c>true</c> if [is in progress]; otherwise, <c>false</c>.</value> + public bool? IsInProgress { get; set; } /// <summary> /// Gets or sets the series timer identifier. |
