Files
DP44/Common/DTS.Common/.svn/pristine/b9/b9dd8e1966618fd37242fc5a3981d87aa8aac06d.svn-base

17 lines
522 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using DTS.Common.Interface.DataRecorders;
using Prism.Events;
namespace DTS.Common.Events.TTSImport
{
/// <summary>
/// The EIDMappingEvent event.
/// this event is published whenever we have determined a hardware channel to sensor id mapping
/// </summary>
/// <remarks>
/// published value is a mapping of sensorId to hardwareChannelId
/// </remarks>
public class EIDMappingEvent : PubSubEvent<IDictionary<string, string>> { }
}