diff options
| author | ScottIsAFool <scottisafool@live.co.uk> | 2013-09-08 08:49:01 +0100 |
|---|---|---|
| committer | ScottIsAFool <scottisafool@live.co.uk> | 2013-09-08 08:49:01 +0100 |
| commit | 9566876da4d7d59b138d24147e8a492205ca78de (patch) | |
| tree | f4f4828e07b4b38bad267acd9d431492995472be /MediaBrowser.Model/Session | |
| parent | 802ec3153da5c3c9c7c66b852beafbe8092c29e7 (diff) | |
Updated project files, changed INotify implementation
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/SessionInfoDto.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs index ada624736..f9b0e0abd 100644 --- a/MediaBrowser.Model/Session/SessionInfoDto.cs +++ b/MediaBrowser.Model/Session/SessionInfoDto.cs @@ -1,10 +1,10 @@ -using MediaBrowser.Model.Entities; +using System.ComponentModel; +using MediaBrowser.Model.Entities; using System; namespace MediaBrowser.Model.Session { - [ImplementPropertyChanged] - public class SessionInfoDto + public class SessionInfoDto : INotifyPropertyChanged { /// <summary> /// Gets or sets the id. @@ -107,5 +107,7 @@ namespace MediaBrowser.Model.Session /// </summary> /// <value><c>true</c> if [supports remote control]; otherwise, <c>false</c>.</value> public bool SupportsRemoteControl { get; set; } + + public event PropertyChangedEventHandler PropertyChanged; } } |
