Files
DP44/Common/DTS.CommonCore/Events/RaiseNotification.cs
2026-04-17 14:55:32 -04:00

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> { }
}