21 lines
603 B
C#
21 lines
603 B
C#
|
|
using DTS.Common.Base;
|
|||
|
|
using Prism.Events;
|
|||
|
|
// ReSharper disable CheckNamespace
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The number of selected Tests changed event.
|
|||
|
|
/// </summary>
|
|||
|
|
public class TestSummaryCountNotification : PubSubEvent<TestSummaryCountNotificationArg> { }
|
|||
|
|
|
|||
|
|
public class TestSummaryCountNotificationArg
|
|||
|
|
{
|
|||
|
|
public int SummaryCount { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 24417 start pulling apart viewer to allow reuse for PSD reports
|
|||
|
|
/// </summary>
|
|||
|
|
public IBaseViewModel ParentVM { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|