updated nuget

This commit is contained in:
Luke Pulverenti
2014-04-27 15:30:12 -04:00
parent f476944d91
commit 3db92516be
6 changed files with 21 additions and 23 deletions

View File

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