14 lines
386 B
Plaintext
14 lines
386 B
Plaintext
using Microsoft.Practices.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 : CompositePresentationEvent<string> { }
|
|
}
|