Files
DP44/Common/DTS.Common/.svn/pristine/36/3604a30795ce64a7a8505d0731a3a3b848c94041.svn-base

12 lines
395 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using 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 : PubSubEvent<NotificationContentEventArgs> { }
}