24 lines
803 B
C#
24 lines
803 B
C#
using System.Collections.Generic;
|
|
using DTS.Common.Base;
|
|
using DTS.Common.Interface.TestDefinition;
|
|
using Prism.Events;
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
// ReSharper disable CheckNamespace
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// The selected Test Summary list changed event.
|
|
/// </summary>
|
|
public class TestSummaryChangeNotification : PubSubEvent<TestSummaryChangeNotificationArg> { }
|
|
|
|
public class TestSummaryChangeNotificationArg
|
|
{
|
|
public List<ITestSummary> SummaryList { get; set; }
|
|
/// <summary>
|
|
/// 24417 start pulling apart viewer to allow reuse for PSD reports
|
|
/// </summary>
|
|
public IBaseViewModel ParentVM { get; set; }
|
|
public int TotalSummaryCount { get; set; }
|
|
}
|
|
}
|