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

13 lines
406 B
C#

using Microsoft.Practices.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 : CompositePresentationEvent<object> { }
}