2010-10-08 03:35:04 +00:00
|
|
|
using System;
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
namespace NzbDrone.Core.Model.Notification
|
2010-10-08 03:35:04 +00:00
|
|
|
{
|
|
|
|
public class BasicNotification
|
|
|
|
{
|
|
|
|
public BasicNotification()
|
|
|
|
{
|
|
|
|
Id = Guid.Empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the unique id.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The Id.</value>
|
|
|
|
public Guid Id { get; private set; }
|
|
|
|
|
|
|
|
public String Title { get; set; }
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
public BasicNotificationType Type { get; set; }
|
2010-10-08 03:35:04 +00:00
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
}
|
|
|
|
}
|