You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
450 B
25 lines
450 B
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
|
|
}
|
|
|
|
} |