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.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs b/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs
index 29f0824fb..fca2e1fe4 100644
--- a/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs
+++ b/MediaBrowser.Model/LiveTv/RecordingGroupDto.cs
@@ -1,10 +1,11 @@
-
+using System.ComponentModel;
+
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class RecordingGroupDto.
/// </summary>
- public class RecordingGroupDto
+ public class RecordingGroupDto : INotifyPropertyChanged
{
/// <summary>
/// Gets or sets the name.
@@ -23,5 +24,7 @@ namespace MediaBrowser.Model.LiveTv
/// </summary>
/// <value>The recording count.</value>
public int RecordingCount { get; set; }
+
+ public event PropertyChangedEventHandler PropertyChanged;
}
}