14 lines
393 B
C#
14 lines
393 B
C#
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.TestSetups.TestSetupsList
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The TTSImportSummaryImportEvent event.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <remarks>This event is used by the Summary step to indicate that the Import button was clicked.</remarks>
|
|||
|
|
///
|
|||
|
|
public class TestSetupsListTestSetupSelectedEvent : PubSubEvent<string[]> { }
|
|||
|
|
}
|