Added instant notification framework

This commit is contained in:
kay.one 2011-08-08 14:50:48 -07:00
commit 5ab07d7028
29 changed files with 697 additions and 555 deletions

View file

@ -0,0 +1,25 @@
namespace NzbDrone.Web.Models
{
public class NotificationResult
{
public NotificationResult()
{
Text = string.Empty;
}
public bool IsMessage { get { return true; } }
public string Title { get; set; }
public string Text { get; set; }
public NotificationType NotificationType { get; set; }
}
public enum NotificationType
{
Info,
Error
}
}