diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-11-25 23:48:12 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-11-25 23:48:12 -0500 |
| commit | 58a7829ecd773dbc3c875d3f0d4438b847fd54b5 (patch) | |
| tree | 511a1914fea9b4ff9fc724539033023e5c1e04f6 /MediaBrowser.Model/Entities/LibraryUpdateInfo.cs | |
| parent | 4f09c1e06dab7cc8b260129648f5a54c77b8a4f9 (diff) | |
update library changed notifier
Diffstat (limited to 'MediaBrowser.Model/Entities/LibraryUpdateInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/LibraryUpdateInfo.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs b/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs index b3d3be70e..8995e0888 100644 --- a/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs +++ b/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs @@ -35,6 +35,8 @@ namespace MediaBrowser.Model.Entities /// <value>The items updated.</value> public string[] ItemsUpdated { get; set; } + public string[] CollectionFolders { get; set; } + /// <summary> /// Initializes a new instance of the <see cref="LibraryUpdateInfo"/> class. /// </summary> @@ -45,6 +47,7 @@ namespace MediaBrowser.Model.Entities ItemsAdded = new string[] { }; ItemsRemoved = new string[] { }; ItemsUpdated = new string[] { }; + CollectionFolders = new string[] { }; } } } |
