15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
|
|
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> { }
|
||
|
|
}
|