|
@@ -1,4 +1,5 @@
|
|
|
using System;
|
|
|
+using System.Collections.Generic;
|
|
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
{
|
|
@@ -14,13 +15,13 @@ namespace MediaBrowser.Model.LiveTv
|
|
|
/// </summary>
|
|
|
/// <value>The external identifier.</value>
|
|
|
public string ExternalId { get; set; }
|
|
|
-
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// Gets or sets the program identifier.
|
|
|
/// </summary>
|
|
|
/// <value>The program identifier.</value>
|
|
|
public string ProgramId { get; set; }
|
|
|
-
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// ChannelId of the recording.
|
|
|
/// </summary>
|
|
@@ -36,6 +37,12 @@ namespace MediaBrowser.Model.LiveTv
|
|
|
/// </summary>
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// Gets or sets the path.
|
|
|
+ /// </summary>
|
|
|
+ /// <value>The path.</value>
|
|
|
+ public string Path { get; set; }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// Description of the recording.
|
|
|
/// </summary>
|
|
@@ -56,5 +63,27 @@ namespace MediaBrowser.Model.LiveTv
|
|
|
/// </summary>
|
|
|
/// <value>The status.</value>
|
|
|
public RecordingStatus Status { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Genre of the program.
|
|
|
+ /// </summary>
|
|
|
+ public List<string> Genres { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Gets or sets a value indicating whether this instance is repeat.
|
|
|
+ /// </summary>
|
|
|
+ /// <value><c>true</c> if this instance is repeat; otherwise, <c>false</c>.</value>
|
|
|
+ public bool IsRepeat { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Gets or sets the episode title.
|
|
|
+ /// </summary>
|
|
|
+ /// <value>The episode title.</value>
|
|
|
+ public string EpisodeTitle { get; set; }
|
|
|
+
|
|
|
+ public RecordingInfoDto()
|
|
|
+ {
|
|
|
+ Genres = new List<string>();
|
|
|
+ }
|
|
|
}
|
|
|
}
|