Files
DP44/Common/DTS.Common/.svn/pristine/c9/c9e8b38d4e28737505c22449da2e2de368cdf142.svn-base

13 lines
371 B
Plaintext
Raw Normal View History

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