14 lines
391 B
Plaintext
14 lines
391 B
Plaintext
|
|
using DTS.Common.Interface.Realtime;
|
||
|
|
using 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 : PubSubEvent<IRealtimeChannel> { }
|
||
|
|
}
|