From 3db92516bea0f473022f257dd61dfeafa6998c75 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 27 Apr 2014 15:30:12 -0400 Subject: updated nuget --- MediaBrowser.Model/Notifications/Notification.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'MediaBrowser.Model/Notifications') diff --git a/MediaBrowser.Model/Notifications/Notification.cs b/MediaBrowser.Model/Notifications/Notification.cs index e69875a68a..e5040373b2 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 Variables { get; set; } public SendToUserType? SendToUserMode { get; set; } - + + public List ExcludeUserIds { get; set; } + public NotificationRequest() { UserIds = new List(); Date = DateTime.UtcNow; Variables = new Dictionary(StringComparer.OrdinalIgnoreCase); + + ExcludeUserIds = new List(); } } -- cgit v1.2.3