using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events.Hardware.HardwareList
{
///
/// The HardwareListHardwareTestClockMasterEvent event.
///
///
/// This event is used to indicate the hardware's clock master status in this test was changed.
///
public class HardwareListHardwareTestClockMasterEvent : CompositePresentationEvent { }
public class HardwareListHardwareTestClockMasterEventArgs
{
public string SerialNumber { get; private set; }
public int DASId { get; private set; }
public bool IsClockMaster { get; private set; }
public HardwareListHardwareTestClockMasterEventArgs(string serial, bool isClockMaster, int dasId)
{
DASId = dasId;
SerialNumber = serial;
IsClockMaster = isClockMaster;
}
}
}