12 lines
430 B
C#
12 lines
430 B
C#
using Microsoft.Practices.Prism.Events;
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// The <see cref="RaiseNotification"/> event.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The <see cref="RaiseNotification"/> event is used to display the notification content such as message and icon.
|
|
/// </remarks>
|
|
public class RaiseNotification : CompositePresentationEvent<NotificationContentEventArgs> { }
|
|
}
|