18 lines
549 B
Plaintext
18 lines
549 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
using Microsoft.Practices.Prism.Events;
|
||
|
|
// ReSharper disable CheckNamespace
|
||
|
|
|
||
|
|
namespace DTS.Common.Events
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The number of selected Tests changed event.
|
||
|
|
/// </summary>
|
||
|
|
public class GraphChannelsReadCompletedNotification : CompositePresentationEvent<GraphChannelsReadCompletedNotificationArgs> { }
|
||
|
|
|
||
|
|
public class GraphChannelsReadCompletedNotificationArgs
|
||
|
|
{
|
||
|
|
public bool IsReadCompleted { get; set; }
|
||
|
|
public IBaseViewModel GraphVM { get; set; }
|
||
|
|
}
|
||
|
|
}
|