13 lines
371 B
C#
13 lines
371 B
C#
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// The CloseApplicationRequested event.
|
|
/// </summary>
|
|
///
|
|
/// <remarks>This event is used by the Application to notify subscribers that the Application is requested to be closed.</remarks>
|
|
///
|
|
public class CloseApplicationRequested : PubSubEvent<object> { }
|
|
}
|