Files
DP44/Common/DTS.Common/.svn/pristine/f6/f6fe6378ed0c75ca475fd39c2ebb979f09b734ac.svn-base
2026-04-17 14:55:32 -04:00

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> { }
}