14 lines
416 B
Plaintext
14 lines
416 B
Plaintext
|
|
using Microsoft.Practices.Prism.Events;
|
||
|
|
|
||
|
|
namespace DTS.Common.Events.Sensors.SensorsList
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <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 SensorsListSensorSelectedEvent : CompositePresentationEvent<string[]> { }
|
||
|
|
}
|