Merge branch 'master' of git://github.com/kayone/NzbDrone

This commit is contained in:
Mark McDowall 2011-08-21 18:21:48 -07:00
commit 66522b8109
6 changed files with 0 additions and 150 deletions

View file

@ -1,28 +0,0 @@
using System;
namespace NzbDrone.Core.Model.Notification
{
public class BasicNotification
{
public BasicNotification()
{
Id = Guid.NewGuid();
}
/// <summary>
/// Gets or sets the unique id.
/// </summary>
/// <value>The Id.</value>
public Guid Id { get; private set; }
public String Title { get; set; }
public BasicNotificationType Type { get; set; }
/// <summary>
/// Gets or sets a value indicating whether or not this message should be automatically dismissed after a period of time.
/// </summary>
/// <value><c>true</c> if [auto dismiss]; otherwise, <c>false</c>.</value>
public bool AutoDismiss { get; set; }
}
}

View file

@ -1,9 +0,0 @@
namespace NzbDrone.Core.Model.Notification
{
public enum BasicNotificationType
{
Info = 0,
Warrning = 1,
Error = 2
}
}