1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Web/Models/NotificationResult.cs
2011-08-08 14:50:48 -07:00

25 lines
450 B
C#

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
}
}