commit
66522b8109
@ -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; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
namespace NzbDrone.Core.Model.Notification
|
|
||||||
{
|
|
||||||
public enum BasicNotificationType
|
|
||||||
{
|
|
||||||
Info = 0,
|
|
||||||
Warrning = 1,
|
|
||||||
Error = 2
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue