Files
DP44/Common/DTS.CommonCore/.svn/pristine/8a/8aa74ec54b8dcc46ac9898610fdeec8b154c737d.svn-base
2026-04-17 14:55:32 -04:00

17 lines
486 B
Plaintext

using Microsoft.Practices.Prism.Events;
using System;
namespace DTS.Common.Events.Hardware.HardwareList
{
/// <summary>
/// The HardwareAddedEvent event.
/// </summary>
///
/// <remarks>This event is used to indicate hardware was added or updated
/// integer is database id of hardware, string is serial number of hardware
/// </remarks>
///
public class HardwareSavedEvent : CompositePresentationEvent<Tuple<int,string>> { }
}