15 lines
409 B
C#
15 lines
409 B
C#
|
|
using DTS.Common.Interface.TestSetups.Imports.TTS.ReadFile;
|
|||
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.TTSImport
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The TTSImportTestSetupChangedEvent event.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <remarks>This event is published whenever the Test Setup is changed.</remarks>
|
|||
|
|
///
|
|||
|
|
public class TTSImportTestSetupChangedEvent : PubSubEvent<ITTSSetup> { }
|
|||
|
|
}
|