14 lines
351 B
C#
14 lines
351 B
C#
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.TestSetups.TestSetupsList
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The CurrentTestChangedEvent event.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <remarks>This event is used to signal the current test setup has changed</remarks>
|
|||
|
|
///
|
|||
|
|
public class CurrentTestChangedEvent : PubSubEvent<string> { }
|
|||
|
|
}
|