diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-27 15:30:12 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-27 15:30:12 -0400 |
| commit | 3db92516bea0f473022f257dd61dfeafa6998c75 (patch) | |
| tree | a7a03317f913d85c2e634770ec1963c2a38cad78 /MediaBrowser.Model/Notifications/Notification.cs | |
| parent | f476944d9168c7c8a8a87e7e439f57ef8aceb4be (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Model/Notifications/Notification.cs')
| -rw-r--r-- | MediaBrowser.Model/Notifications/Notification.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Notifications/Notification.cs b/MediaBrowser.Model/Notifications/Notification.cs index e69875a68..e5040373b 100644 --- a/MediaBrowser.Model/Notifications/Notification.cs +++ b/MediaBrowser.Model/Notifications/Notification.cs @@ -1,6 +1,6 @@ -using System; +using MediaBrowser.Model.Configuration; +using System; using System.Collections.Generic; -using MediaBrowser.Model.Configuration; namespace MediaBrowser.Model.Notifications { @@ -50,13 +50,17 @@ namespace MediaBrowser.Model.Notifications public Dictionary<string, string> Variables { get; set; } public SendToUserType? SendToUserMode { get; set; } - + + public List<string> ExcludeUserIds { get; set; } + public NotificationRequest() { UserIds = new List<string>(); Date = DateTime.UtcNow; Variables = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); + + ExcludeUserIds = new List<string>(); } } |
