using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PPC.Common.Notifications; namespace Tango.PPC.Jobs.NotificationItems { /// /// Represents a simple text message notification item which can be inserted into the application notifications panel. /// /// public class NewSynchronizardJobsNotificationItem : NotificationItem { /// /// Initializes a new instance of the class. /// public NewSynchronizardJobsNotificationItem() { CanClose = true; } /// /// Gets or sets the view type. /// public override Type ViewType { get { return typeof(NewSynchronizardJobsNotificationItemView); } } } }