diff options
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>(); } } |
