14 lines
426 B
C#
14 lines
426 B
C#
|
|
using DTS.Common.Interface.Realtime;
|
|||
|
|
using Microsoft.Practices.Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.Realtime
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The RealtimeChannelSelectedEvent event.
|
|||
|
|
/// this event is called whenever a realtime channel is selected and is used to notify realtime
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
public class RealtimeChannelSelectedEvent : CompositePresentationEvent<IRealtimeChannel> { }
|
|||
|
|
}
|