15 lines
369 B
C#
15 lines
369 B
C#
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
|
|
/// <summary>
|
|
/// The TTSImportSavedChangesStatusEvent event.
|
|
/// </summary>
|
|
///
|
|
/// <remarks>
|
|
/// This event is used to communicate whether changes have been saved or not.
|
|
/// </remarks>
|
|
///
|
|
public class TTSImportSavedChangesStatusEvent : PubSubEvent<bool> { }
|
|
} |