15 lines
430 B
C#
15 lines
430 B
C#
|
|
using DTS.Common.Interface.TestSetups.Imports.TTS.ReadFile;
|
|||
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The TTSImportArmedRunTestEvent event.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <remarks>This event is used by the Hardware Scan step to tell the page to jump to the Arm step in Run Test.</remarks>
|
|||
|
|
///
|
|||
|
|
public class TTSImportArmedRunTestEvent : PubSubEvent<ITTSSetup> { }
|
|||
|
|
}
|