aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/LiveTv/RecordingGroupDto.cs')
-rw-r--r--MediaBrowser.Model/LiveTv/RecordingGroupDto.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs b/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs
new file mode 100644
index 000000000..29f0824fb
--- /dev/null
+++ b/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs
@@ -0,0 +1,27 @@
+
+namespace MediaBrowser.Model.LiveTv
+{
+ /// <summary>
+ /// Class RecordingGroupDto.
+ /// </summary>
+ public class RecordingGroupDto
+ {
+ /// <summary>
+ /// Gets or sets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ public string Name { get; set; }
+
+ /// <summary>
+ /// Gets or sets the identifier.
+ /// </summary>
+ /// <value>The identifier.</value>
+ public string Id { get; set; }
+
+ /// <summary>
+ /// Gets or sets the recording count.
+ /// </summary>
+ /// <value>The recording count.</value>
+ public int RecordingCount { get; set; }
+ }
+}