diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/DisplayPreferences.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/DisplayPreferences.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Entities/DisplayPreferences.cs b/MediaBrowser.Model/Entities/DisplayPreferences.cs index 3a61f3908..829affd01 100644 --- a/MediaBrowser.Model/Entities/DisplayPreferences.cs +++ b/MediaBrowser.Model/Entities/DisplayPreferences.cs @@ -1,15 +1,21 @@ using MediaBrowser.Model.Drawing; using System; using System.Collections.Generic; +using System.ComponentModel; namespace MediaBrowser.Model.Entities { /// <summary> /// Defines the display preferences for any item that supports them (usually Folders) /// </summary> - public class DisplayPreferences + public class DisplayPreferences : INotifyPropertyChanged { /// <summary> + /// Occurs when [property changed]. + /// </summary> + public event PropertyChangedEventHandler PropertyChanged; + + /// <summary> /// The image scale /// </summary> private const double ImageScale = .9; |
