14 lines
352 B
C#
14 lines
352 B
C#
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.Hardware.HardwareList
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The HardwareListShowCompact event.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <remarks>This event is used to indicate show compact/expanded was changed.</remarks>
|
|||
|
|
///
|
|||
|
|
public class HardwareListShowCompactEvent : PubSubEvent<bool> { }
|
|||
|
|
}
|