Lidarr/NzbDrone.Web/Models/NotificationResult.cs

25 lines
450 B
C#
Raw Normal View History

2011-08-08 21:50:48 +00:00
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
}
}