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