Files
DP44/Common/DTS.Common/.svn/pristine/94/94be54b75c5a2fb65f5ff51b1efc30d69a0e7202.svn-base
2026-04-17 14:55:32 -04:00

18 lines
514 B
Plaintext

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 GraphChannelsReadCompletedNotification : PubSubEvent<GraphChannelsReadCompletedNotificationArgs> { }
public class GraphChannelsReadCompletedNotificationArgs
{
public bool IsReadCompleted { get; set; }
public IBaseViewModel GraphVM { get; set; }
}
}