Files
DP44/Common/DTS.CommonCore/.svn/pristine/27/27ccb519480ef424a48033fbd0d535cffd6761d6.svn-base
2026-04-17 14:55:32 -04:00

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; }
}
}