diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-17 13:23:00 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-17 13:23:00 -0500 |
| commit | 91e4f67139e30e8a1c873af802e7fa70d960671f (patch) | |
| tree | e3e48ae08c8919074d2043e520720f20f2a0f41a /MediaBrowser.Model/LiveTv/ProgramInfoDto.cs | |
| parent | 43a806ad0265a537e7dc730d277cf4debe3e7dd5 (diff) | |
add more properties to LiveTvInfo
Diffstat (limited to 'MediaBrowser.Model/LiveTv/ProgramInfoDto.cs')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/ProgramInfoDto.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs index 0798a2294..aeaf2c15b 100644 --- a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs +++ b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs @@ -1,11 +1,12 @@ -using MediaBrowser.Model.Dto; +using System.ComponentModel; +using MediaBrowser.Model.Dto; using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; namespace MediaBrowser.Model.LiveTv { - public class ProgramInfoDto + public class ProgramInfoDto : INotifyPropertyChanged { /// <summary> /// Id of the program. @@ -186,6 +187,8 @@ namespace MediaBrowser.Model.LiveTv Genres = new List<string>(); ImageTags = new Dictionary<ImageType, Guid>(); } + + public event PropertyChangedEventHandler PropertyChanged; } public enum ProgramAudio |
